@charset "UTF-8";
.seo-content {
  background: var(--bg-seo);
}
.seo-content .title {
  color: var(--text-dark-800);
}
.seo-content section {
  display: flex;
  justify-content: center;
}
.seo-content .wrapper {
  max-width: 1100px;
}

.intro-section {
  padding: 40px 10px 100px 30px;
}
.intro-section .intro-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.intro-section {
  /* LEFT */
}
.intro-section .intro-content {
  flex: 1;
  max-width: 520px;
}
.intro-section {
  /* TITLE */
}
.intro-section .intro-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.intro-section {
  /* DESCRIPTION */
}
.intro-section .intro-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-seo);
  margin-bottom: 25px;
}
.intro-section {
  /* CTA */
}
.intro-section .intro-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
}
.intro-section .intro-actions .btn {
  padding: 12px 22px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  border: none;
}
.intro-section .intro-actions .primary {
  background: var(--btn-secondary);
  color: #fff;
}
.intro-section .intro-actions .primary:hover {
  background: var(--btn-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-seo);
}
.intro-section {
  /* RIGHT (IMAGE) */
}
.intro-section .intro-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.intro-section .intro-visual img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.features-section {
  padding: 40px 10px;
}
.features-section .section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.features-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.features-section .feature-item {
  flex: 1 1 320px;
  max-width: 370px;
  background: var(--bg-card);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 26px;
  border: 1px solid var(--border-public);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features-section .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 7px 20px var(--shadow-seo);
}
.features-section .feature-item .feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.features-section .feature-item .feature-header svg {
  width: 25px;
  height: 25px;
  color: #1f65d6;
  flex-shrink: 0;
}
.features-section .feature-item .feature-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark-800);
  margin: 0;
}
.features-section .feature-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-seo);
}

.how-section {
  padding: 100px 20px;
}
.how-section .section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.how-section .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.how-section {
  /* STEP */
}
.how-section .step {
  position: relative;
  flex: 1 1 260px;
  max-width: 340px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
.how-section .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: #e5e7eb;
}
.how-section .step:hover {
  transform: translateY(-4px);
}
.how-section .step {
  /* HEADER (number + title) */
}
.how-section .step .step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.how-section .step {
  /* NUMBER (🔥 أهم عنصر) */
}
.how-section .step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px var(--shadow-seo);
}
.how-section .step h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark-800);
}
.how-section .step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-seo);
  margin: 0;
}
.how-section {
  /* ✨ Highlight (آخر خطوة) */
}
.how-section .step.highlight .step-number {
  background: #111827;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.usecases-section {
  padding: 100px 20px;
  /* HEADER */
}
.usecases-section .usecases-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.usecases-section .usecases-header .section-title {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.usecases-section .usecases-header .section-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-seo);
}
.usecases-section {
  /* GRID */
}
.usecases-section .usecases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.usecases-section {
  /* CARD */
}
.usecases-section .usecase-card {
  text-align: left;
  flex: 1 1 320px;
  max-width: 370px;
  background: var(--bg-card);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 26px;
  border: 1px solid var(--border-public);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
.usecases-section .usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
}
.usecases-section .usecase-card .usecase-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}
.usecases-section .usecase-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark-800);
  margin-bottom: 10px;
}
.usecases-section .usecase-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-seo);
}
.usecases-section {
  /* CTA */
}
.usecases-section .usecases-cta {
  text-align: center;
  margin-top: 40px;
}
.usecases-section .usecases-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
.usecases-section .usecases-cta .btn-primary:hover {
  transform: translateY(-2px);
  background: #1e4fd8;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}
.usecases-section {
  /* MOBILE */
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-top: 1px solid var(--border-public);
  background: var(--bg-footer);
  font-size: 13px;
  gap: 10px;
  /* روابط */
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
footer .footer-links a {
  color: var(--text-footer);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
footer .footer-links a:hover {
  opacity: 1;
  color: #2563eb;
}
footer {
  /* الجزء السفلي */
}
footer .footer-bottom {
  display: flex;
  align-items: center;
}
footer .copyright {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-footer);
  opacity: 0.7;
  white-space: nowrap;
}
footer .web-name {
  font-weight: 600;
  color: var(--text-blue-700);
}
footer {
  /* 📱 موبايل */
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer-links {
    justify-content: center;
  }
  footer .footer-bottom {
    justify-content: center;
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .intro-section .intro-wrapper {
    flex-direction: column;
  }
  .intro-section .intro-content {
    max-width: 100%;
  }
  .intro-section .intro-actions {
    justify-content: center;
  }
  .features-section .feature-item {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  .usecases-section .usecase-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
/* 📱 Mobile (عمود واحد + تحسين كامل) */
@media (max-width: 600px) {
  .how-section .steps {
    gap: 20px;
  }
  .how-section .step {
    max-width: 100%;
    text-align: left;
  }
  .how-section .step .step-header {
    gap: 12px;
  }
  .how-section {
    /* إزالة الخط */
  }
  .how-section .step::after {
    display: none;
  }
  .features-section .section-title {
    font-size: 22px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .features-section .features-grid {
    gap: 16px;
    padding: 0 12px;
  }
  .features-section .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .features-section .feature-header {
    gap: 10px;
  }
  .features-section .feature-header svg {
    width: 22px;
    height: 22px;
  }
  .features-section .feature-header h3 {
    font-size: 16px;
  }
  .features-section p {
    font-size: 13.5px;
    line-height: 1.6;
  }
  .usecases-section {
    padding: 80px 10px;
  }
  .usecases-section .usecases-header {
    margin-bottom: 35px;
  }
  .usecases-section .usecases-grid {
    gap: 16px;
    padding: 0 12px;
  }
  .usecases-section .usecase-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
    align-items: flex-start;
    text-align: left;
  }
}
/* 🔥 FLOW LINE (Desktop فقط) */
/* =========================
     USE CASES
  ========================== */

/*# sourceMappingURL=seo.css.map */
