@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 700px) {
  nav {
    align-items: center !important;
    min-height: 48px;
  }

  .logo-link img {
    height: 40px;
    width: auto;
    margin-right: 8px;
    display: block;
  }
}

@media (max-width: 700px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    background: #fff;
    box-shadow: 0 2px 12px #0001;
  }

  body {
    padding-top: 72px;
  }

  nav ul {
    display: none;
  }

  nav ul.open {
    display: flex;
  }
}

.auth-buttons {
  margin-left: 8px;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 48px 0 32px 0;
  font-family: 'Vazirmatn', sans-serif;
}

.pricing-section h2 {
  text-align: center;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.pricing-loading {
  text-align: center;
  font-size: 1.2rem;
  color: #888;
  margin: 32px 0;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pricing-plan {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0001;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  border: 2px solid #e5e5e5;
}

.pricing-plan--bold {
  border-color: #13b389;
  box-shadow: 0 4px 24px #13b38922;
}

.pricing-plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.pricing-plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: #13b389;
  margin-bottom: 12px;
}

.pricing-plan-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
}

.pricing-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  width: 100%;
}

.pricing-plan-features li {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 6px;
  padding-right: 4px;
  position: relative;
}

.feature-limit {
  color: #888;
  font-size: 0.92em;
}

.pricing-plan-models {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
}

.no-plans {
  text-align: center;
  color: #13b389;
  font-size: 1.1rem;
  margin: 32px 0;
}

/* Pricing Card React-like Styles */
.pricing-plan-popular {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.95em;
  font-weight: 600;
  padding: 4px 18px;
  margin: 0 2px;
  background: #eee;
  color: #333;
}

.badge-success {
  background: #10A37F;
  color: #fff;
}

.badge-secondary {
  background: #e5e5e5;
  color: #222;
  border: 1px solid #ccc;
}

.badge-outline {
  background: #fff;
  color: #10A37F;
  border: 1px solid #10A37F;
}

.badge-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
}

.pricing-plan {
  position: relative;
}

.pricing-plan-features-block,
.pricing-plan-models-block,
.pricing-plan-default-model-block {
  margin-bottom: 16px;
}

.pricing-plan-features-title,
.pricing-plan-models-title,
.pricing-plan-default-model-title {
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.pricing-plan-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-icon {
  display: inline-block;
  width: 18px;
  color: #10A37F;
  font-weight: bold;
  margin-left: 6px;
}

.feature-unavailable {
  color: #bbb;
}

.feature-title {
  font-size: 0.98em;
}

@media (max-width: 1200px) {
  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  width: 100%;
  background: #071E22;
  color: #fff;
  padding-top: 132px;
  padding-bottom: 0;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 0 32px 132px 32px;
}

.footer-col {
  flex: 1 1 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  text-align: right;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #fff;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-col ul li:hover {
  color: #13b389;
}

.footer-col a {
  transition: color 0.2s;
  text-decoration: none;
  color: #fff;
}

.footer-col a:hover {
  color: #13b389;
}

.footer-col--social i {
  margin-left: 8px;
  font-size: 15px;
}

.footer-bottom {
  width: 100%;
  background: #071E22;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px 18px 48px;
  font-size: 17px;
  border-top: 2px solid #fff1;
  box-sizing: border-box;
}

.footer-bottom span {
  opacity: 0.95;
}

@media (max-width: 900px) {
  .footer-content {
    gap: 32px;
    padding: 0 8px 124px 8px;
  }

  .footer-col {
    min-width: 120px;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-col ul li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 12px 16px 12px 16px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0 0 64px 0;
  }

  .footer-col {
    min-width: 0;
    margin-bottom: 64px;
    align-items: center;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-col ul li {
    font-size: 11px;
    margin-bottom: 8px;
    text-align: center;
  }

  .footer-col--social i {
    font-size: 11px;
  }

  .footer-bottom {
    flex-direction: column;
    font-size: 10px;
    padding: 8px 4px 8px 4px;
    gap: 2px;
    text-align: center;
  }
}

/* Blog Section */
.blog-section {
  width: 100%;
  background: #F6F5F4;
  padding: 80px 0 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Vazirmatn', sans-serif;
}

.blog-title-group {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 16px;
}

.blog-title-group h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #111;
}

.blog-title-group p {
  font-size: 20px;
  color: #444;
  margin: 0;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.blog-loading {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin: 32px 0;
}

.blog-empty {
  text-align: center;
  color: #666;
  margin: 32px 0;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.blog-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-noimg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-date {
  display: block;
  font-size: 0.85rem;
  color: #13b389;
  margin-bottom: 8px;
  font-weight: 600;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 12px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #13b389;
}

.blog-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.blog-more-link {
  display: inline-block;
  padding: 12px 28px;
  background: #13b389;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s;
}

.blog-more-link:hover {
  background: #0a6c5a;
}

@media (max-width: 900px) {
  .blog-section {
    padding: 60px 0 48px 0;
  }

  .blog-title-group h2 {
    font-size: 32px;
  }

  .blog-title-group p {
    font-size: 16px;
  }

  .blog-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 48px 0 40px 0;
  }

  .blog-title-group {
    margin-bottom: 32px;
  }

  .blog-title-group h2 {
    font-size: 26px;
  }

  .blog-card-body {
    padding: 16px;
  }

  .blog-card-title {
    font-size: 1.05rem;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 0 164px 0;
  margin-top: 120px;
}

.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-content h2 {
  font-size: 56px;
  font-weight: 900;
  color: #111;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 0;
  line-height: 100px;
}

.cta-btn {
  display: inline-block;
  background: #13b389;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 18px 56px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 2px 8px #13b38922;
  transition: background 0.2s;
  margin-top: 0;
}

.cta-btn:hover {
  background: #0a6c5a;
}

.cta-shape {
  position: absolute;
  z-index: 1;
}

.cta-shape--left {
  left: 0;
  top: 0;
  width: 400px;
  max-width: 40vw;
}

.cta-shape--left img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-shape--right {
  right: 0;
  top: 60px;
  width: 48px;
  max-width: 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-shape--right img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .cta-content h2 {
    font-size: 48px;
    margin-bottom: 28px;
  }

  .cta-btn {
    font-size: 20px;
    padding: 12px 32px;
    border-radius: 10px;
  }

  .cta-shape--left {
    width: 180px;
  }

  .cta-shape--right {
    width: 28px;
    top: 30px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    min-height: 220px;
    padding: 32px 0 90px 0;
    margin-top: 90px;
  }

  .cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 70px;
  }

  .cta-shape--left {
    width: 80px;
  }

  .cta-shape--right {
    width: 14px;
    top: 10px;
    gap: 6px;
  }
}

/* Testimonial Section */
.testimonial-section {
  width: 100%;
  background: #fff;
  padding: 90px 0 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
}

.testimonial-quote-icon {
  align-self: flex-start;
  margin-right: 8vw;
  margin-bottom: 2vw;
}

.testimonial-quote-icon img {
  width: 164px;
  height: 164px;
  display: block;
}

.testimonial-text {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin: 0 0 48px 0;
  text-align: right;
  line-height: 1.4;
  width: 80%;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  margin-left: 8vw;
  align-self: flex-end;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
}

.testimonial-user-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.testimonial-user-title {
  font-size: 14px;
  color: #444;
}

/* English layout overrides */
.ltr-page .testimonial-quote-icon {
  align-self: flex-start;
  margin-left: 8vw;
  margin-right: 0;
}

.ltr-page .testimonial-text {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.ltr-page .testimonial-user {
  align-self: flex-end;
  margin-right: 8vw;
  margin-left: 0;
}

.ltr-page .why-section {
  margin-top: 0px;
}

.ltr-page .why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  width: 100%;
  padding: 0 32px;
  align-items: stretch;
  margin-bottom: 80px;
}

.ltr-page .why-feature,
.ltr-page .why-feature--left,
.ltr-page .why-feature--right {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 24px #071e2220;
  min-height: 100%;
  gap: 12px;
  height: 100%;
}

.ltr-page .why-feature-text {
  max-width: none;
  text-align: left;
}

.ltr-page .why-feature-text h3 {
  font-size: 26px;
}

.ltr-page .why-feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.ltr-page .why-features .why-feature-text {
  width: 100%;
}

@media (max-width: 1024px) {
  .ltr-page .why-features {
    padding: 0 24px;
    gap: 24px;
  }

  .ltr-page .why-feature,
  .ltr-page .why-feature--left,
  .ltr-page .why-feature--right {
    padding: 24px;
  }

  .ltr-page .why-feature-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .ltr-page .why-features {
    padding: 0 16px;
    gap: 20px;
  }

  .ltr-page .why-feature,
  .ltr-page .why-feature--left,
  .ltr-page .why-feature--right {
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .ltr-page .why-feature-text {
    text-align: center;
  }

  .ltr-page .why-feature-text h3 {
    font-size: 22px;
  }

  .ltr-page .why-feature-text p {
    font-size: 15px;
  }
}

.ltr-page .hero {
  padding-top: 128px;
  padding-bottom: 32px;
}

@media (max-width: 900px) {
  .testimonial-section {
    padding: 64px 0 32px 0;
  }

  .testimonial-quote-icon {
    top: 24px;
    right: 4vw;
  }

  .testimonial-quote-icon img {
    width: 100px;
    height: 100px;
  }

  .testimonial-text {
    font-size: 36px;
    width: 96%;
  }

  .testimonial-user {
    margin-left: 2vw;
  }
}

@media (max-width: 600px) {
  .testimonial-section {
    padding: 64px 0 64px 0;
    align-items: flex-end;
  }

  .testimonial-quote-icon {
    top: 8px;
    right: 2vw;
  }

  .testimonial-quote-icon img {
    width: 80px;
    height: 80px;
  }

  .testimonial-text {
    font-size: 34px;
    width: 99%;
    margin-bottom: 18px;
  }

  .testimonial-user {
    gap: 8px;
    margin-left: 24px;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .testimonial-user-name {
    font-size: 13px;
  }

  .testimonial-user-title {
    font-size: 11px;
  }
}

/* FAQ Section */
.faq-section {
  width: 100%;
  background: #fff;
  padding: 80px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-title-group {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title-group h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #111;
}

.faq-title-group p {
  font-size: 20px;
  color: #222;
  margin: 0;
}

.faq-content {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 32px;
  margin: 0 auto;
  box-sizing: border-box;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #111;
  line-height: 1.4;
}

.faq-item p {
  font-size: 16px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 1400px) {
  .faq-content {
    max-width: 1300px;
    gap: 80px;
    padding: 0 40px;
  }

  .faq-item {
    padding: 40px;
  }

  .faq-item h3 {
    font-size: 22px;
  }

  .faq-item p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .faq-section {
    padding: 60px 0 60px 0;
  }

  .faq-title-group {
    margin-bottom: 50px;
    padding: 0 24px;
  }

  .faq-title-group h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .faq-title-group p {
    font-size: 16px;
  }

  .faq-content {
    gap: 40px;
    padding: 0 24px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
  }

  .faq-column {
    gap: 24px;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-item h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .faq-item p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 40px 0 40px 0;
  }

  .faq-title-group {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .faq-title-group h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .faq-title-group p {
    font-size: 14px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }

  .faq-column {
    gap: 16px;
  }

  .faq-item {
    padding: 20px;
    border-radius: 12px;
    margin: 0 0 0 0;
  }

  .faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .faq-item p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Why PasokhYaar Section */
.why-section {
  width: 100%;
  background: #F6F5F4;
  padding: 64px 0 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.why-title-group {
  text-align: center;
  margin-bottom: 48px;
}

.why-title-group h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #111;
}

.why-title-group p {
  font-size: 18px;
  color: #222;
  margin: 0;
}

.why-features {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.why-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.why-feature--left {
  flex-direction: row-reverse;
}

.why-feature--right {
  flex-direction: row;
}

.why-feature img {
  width: 320px;
  max-width: 40vw;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0001, 0 1.5px 8px #0001;
  background: #fafbfc;
}

.why-feature-text {
  max-width: 420px;
}

.why-feature-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #111;
}

.why-feature-text p {
  font-size: 17px;
  color: #222;
  margin: 0;
  line-height: 1.8;
}

.why-feature-text--right {
  text-align: right;
}

@media (max-width: 1100px) {
  .why-feature {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .why-features {
    gap: 32px;
  }

  .why-feature {
    gap: 24px;
  }

  .why-feature img {
    width: 180px;
    max-width: 40vw;
  }

  .why-feature-text {
    max-width: 260px;
  }

  .why-title-group h2 {
    font-size: 28px;
  }

  .why-feature-text h3 {
    font-size: 18px;
  }

  .why-feature-text p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 32px 0 32px 0;
  }

  .why-feature-text h3 {
    font-size: 24px;
  }

  .why-feature-text p {
    font-size: 18px;
  }

  .why-title-group h2 {
    font-size: 28px;
  }

  .why-title-group p {
    font-size: 14px;
  }

  .why-features {
    gap: 48px;
  }

  .why-feature {
    flex-direction: column !important;
    margin: 15px;
    gap: 12px;
  }

  .why-feature img {
    width: 80vw;
    max-width: 80vw;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .why-feature-text {
    max-width: 98vw;
    text-align: center;
  }

  .why-feature--right {
    flex-direction: row-reverse;
  }
}

/* Hero Video Frame */
.hero-video-frame {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 0;
  width: 1200px;
  max-width: 1200px;
  box-shadow: 0 8px 32px #0002, 0 1.5px 8px #0001;
  border-radius: 24px;
  background: #fff;
}

.hero-video-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

@media (max-width: 1200px) {
  .hero-video-frame {
    width: 900px;
  }
}

@media (max-width: 900px) {
  .hero-video-frame {
    width: 90vw;
    max-width: 90vw;
    border-radius: 16px;
  }

  .hero-video-frame img {
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .hero-video-frame {
    width: 90vw;
    max-width: 100vw;
    border-radius: 10px;
    margin-top: 18px;
  }

  .hero-video-frame img {
    border-radius: 10px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
  background: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  margin: 0 0 24px 0;
  color: #111;
  text-align: center;
}

.hero-content p {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin: 0 0 32px 0;
  text-align: center;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  background: #13b389;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 40px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 8px #13b38922;
  transition: background 0.2s;
}

.hero-btn:hover {
  background: #0a6c5a;
}

/* Hero Shapes */
.hero-shape {
  position: absolute;
  z-index: 1;
}

/* --- Hero Shapes refined for better positioning and sizing --- */
.hero-shape--left {
  left: 0;
  top: 0;
  width: 38vw;
  min-width: 320px;
  max-width: 600px;
  height: auto;
  z-index: 1;
}

.hero-shape--left img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-shape--circle {
  right: 0;
  top: 0;
  width: 260px;
  max-width: 22vw;
  z-index: 1;
}

.hero-shape--circle img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-shape--red {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70vw;
  min-width: 320px;
  max-width: 600px;
  z-index: 2;
}

.hero-shape--red img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 48px;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-shape--left {
    width: 180px;
    min-width: 120px;
    top: 0;
  }

  .hero-shape--circle {
    width: 90px;
  }

  .hero-shape--red {
    width: 95vw;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 400px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-shape--left {
    width: 70px;
    min-width: 0;
    top: 0;
  }

  .hero-shape--circle {
    width: 40px;
  }

  .hero-shape--red {
    width: 99vw;
    min-width: 0;
    border-radius: 24px;
  }
}

body {
  margin: 0;
  font-family: 'Vazirmatn';
  background: #fff;
}

header {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 48px;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

nav img {
  height: 48px;
  object-fit: cover;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}

nav ul li a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 400;
}

nav>div {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav>div a {
  text-decoration: none;
  color: #111;
  font-size: 17px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s;
}

nav>div a:last-child {
  color: #fff;
  background: linear-gradient(135deg, #13b389 0%, #0a6c5a 100%);
  font-size: 17px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #13b38922;
}

/* Responsive Header */
@media (max-width: 900px) {
  nav {
    padding: 12px 12px;
    gap: 0;
  }

  nav ul {
    gap: 20px;
  }
}

@media (max-width: 700px) {
  nav {
    flex-wrap: wrap;
    padding: 8px 6px;
    position: relative;
  }

  nav img {
    width: 40px;
    height: 40px;
    z-index: 1201;
    margin-right: 8px;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 32px 32px 32px;
    margin: 0;
    box-shadow: -2px 0 16px #0002;
    z-index: 1200;
    display: flex;
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.3s cubic-bezier(.4, 0, .2, 1);
  }

  nav ul.open {
    right: 0;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  nav ul li {
    width: 100%;
    margin-bottom: 28px;
    text-align: right;
  }

  nav ul li:last-child {
    margin-bottom: 0;
  }

  nav ul li a {
    font-size: 22px;
    padding: 8px 0;
    display: block;
  }

  nav>div {
    flex-direction: row;
    gap: 0;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
  }

  nav>div .login-btn {
    display: none;
  }

  nav>div .signup-btn {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
    padding: 8px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #13b389 0%, #0a6c5a 100%);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px #13b38922;
    text-decoration: none;
    transition: background 0.2s;
  }

  nav>div .signup-btn:hover {
    background: #0a6c5a;
  }

  nav>div a:last-child {
    padding: 6px 14px;
  }

  .hamburger {
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 32px;
    height: 4px;
    margin: 5px 0;
    background: #13b389;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0007;
    z-index: 1100;
  }

  .nav-overlay.open {
    display: block;
  }

  .mobile-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 32px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 36px;
    color: #13b389;
    z-index: 1301;
    cursor: pointer;
    line-height: 1;
  }

  .auth-buttons {
    margin-left: 0px;
  }
}