/* ============================================
   USHIFT - Pages Specific Styles
   Optimized & Responsive
   ============================================ */

/* --- Page Header --- */
.page-header {
  padding: 35px 0 45px;
  text-align: center;
}

.header-content {
  max-width: 600px;
  margin: 0 auto;
}

.page-badge {
  display: inline-block;
  background: rgba(0, 208, 148, 0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 208, 148, 0.2);
  font-family: "IRANYekan", sans-serif;
}

.page-title {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  font-family: "IRANYekan", sans-serif;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.9;
  font-family: "IRANYekan", sans-serif;
  font-weight: 400;
}

/* --- About Story Section --- */
.about-story {
  padding: 80px 0;
}

.story-image {
  position: relative;
  padding: 30px;
}

.image-frame {
  background: var(--section-bg-alt);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  border: 1px solid var(--card-border);
}

.ai-visual {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.ai-circle {
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 35px rgba(0, 200, 151, 0.35);
}

.ai-circle i {
  font-size: 2.2rem;
  color: #000;
}

.orbit {
  position: absolute;
  border: 2px dashed rgba(0, 200, 151, 0.25);
  border-radius: 50%;
  animation: orbit-spin 12s linear infinite;
}

.orbit-1 {
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-2 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbit .dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.floating-card {
  position: absolute;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--card-shadow);
  animation: float 4s ease-in-out infinite;
  border: 1px solid var(--card-border);
}

.floating-card i {
  font-size: 1.1rem;
  color: var(--primary);
}

.floating-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: "IRANYekan", sans-serif;
}

.card-1 {
  top: 15px;
  right: 0;
}

.card-2 {
  bottom: 30px;
  left: 0;
  animation-delay: 2s;
}

.story-content {
  padding-right: 25px;
}

.story-content h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  font-family: "IRANYekan", sans-serif;
}

.story-content .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
  font-family: "IRANYekan", sans-serif;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-family: "IRANYekan", sans-serif;
}

.story-stats {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-box .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  font-family: "IRANYekan", sans-serif;
}

.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: "IRANYekan", sans-serif;
}

/* --- Mission & Vision --- */
.mission-vision {
  padding: 70px 0;
  background: var(--section-bg-alt);
}

.mv-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  border: 1px solid var(--card-border);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-icon i {
  font-size: 1.6rem;
  color: var(--primary);
}

.mv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-family: "IRANYekan", sans-serif;
}

.mv-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  font-family: "IRANYekan", sans-serif;
}

/* --- Values Section --- */
.values-section {
  padding: 80px 0;
}

.value-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: var(--transition-normal);
  border: 1px solid var(--card-border);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 208, 148, 0.1) 0%, rgba(0, 200, 151, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: "IRANYekan", sans-serif;
}

.value-card p {
  color: var(--text-secondary);
  margin: 0;
  font-family: "IRANYekan", sans-serif;
  font-size: 0.9rem;
}

/* --- Team Section --- */
.team-section {
  padding: 80px 0;
  background: var(--section-bg-alt);
}

.team-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  border: 1px solid var(--card-border);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.member-avatar i {
  font-size: 3.5rem;
  color: var(--primary);
}

.team-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-family: "IRANYekan", sans-serif;
}

.team-card .position {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  font-family: "IRANYekan", sans-serif;
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 18px;
  font-family: "IRANYekan", sans-serif;
}

.team-card .social-links {
  justify-content: center;
}

/* --- Timeline Section --- */
.timeline-section {
  padding: 80px 0;
}

.timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), rgba(0, 208, 148, 0.2));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-marker {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 200, 151, 0.3);
}

.timeline-marker i {
  font-size: 1.1rem;
  color: white;
}

.timeline-content {
  flex: 1;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.timeline-date {
  display: inline-block;
  background: rgba(0, 208, 148, 0.1);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "IRANYekan", sans-serif;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: "IRANYekan", sans-serif;
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
  font-family: "IRANYekan", sans-serif;
}

/* --- Products Page Section --- */
.products-page-section {
  padding: 50px 0 80px;
}

.product-detail-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 35px;
  margin-bottom: 35px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.product-image {
  position: relative;
}

.product-visual {
  background: var(--section-bg-alt);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  padding: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.product-visual .main-icon {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.85;
}

.product-visual .floating-element {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  animation: float 4s ease-in-out infinite;
  border: 1px solid var(--card-border);
}

.product-visual .floating-element i {
  font-size: 1.1rem;
  color: var(--primary);
}

.product-visual .el-1 {
  top: 25px;
  right: 35px;
}

.product-visual .el-2 {
  bottom: 35px;
  left: 25px;
  animation-delay: 1.5s;
}

.product-visual .el-3 {
  top: 50%;
  left: 15px;
  animation-delay: 3s;
}

.product-info {
  padding-right: 18px;
}

.product-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  font-family: "IRANYekan", sans-serif;
}

/* بج سورپرایز */
.product-badge.coming {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.product-info h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-family: "IRANYekan", sans-serif;
}

.product-info .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-family: "IRANYekan", sans-serif;
}

.product-info>p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-family: "IRANYekan", sans-serif;
  line-height: 1.8;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  font-size: 0.95rem;
  color: var(--primary);
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: "IRANYekan", sans-serif;
}

.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Comparison Section --- */
.comparison-section {
  padding: 80px 0;
  background: var(--section-bg-alt);
}

.comparison-table {
  width: 100%;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: "IRANYekan", sans-serif;
}

.comparison-table th {
  background: var(--card-bg);
  color: var(--primary);
  border: 1px solid var(--card-border);
  font-weight: 800;
  font-size: 0.95rem;
}

.comparison-table th:first-child {
  text-align: right;
  background: var(--primary-dark);
}

.comparison-table td:first-child {
  text-align: right;
  font-weight: 800;
  color: var(--text-main);
  background: var(--card-bg);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--section-bg-alt);
}

.comparison-table i {
  font-size: 1.2rem;
}

.text-success {
  color: var(--primary) !important;
}

/* --- Pricing Page Styles --- */
.pricing-page-section {
  padding: 50px 0 80px;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 50px;
  background: var(--card-bg);
  padding: 6px;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--card-border);
}

.toggle-btn {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: "IRANYekan", sans-serif;
  position: relative;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 18px rgba(0, 208, 148, 0.3);
}

.discount-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #fbbf24;
  color: #111827;
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: 8px;
  font-weight: 800;
  font-family: "IRANYekan", sans-serif;
}

.pricing-page-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pricing-page-card.featured {
  background: var(--card-bg);
  border: 2px solid var(--primary);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 255, 163, 0.1);
}

.pricing-page-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-icon {
  width: 55px;
  height: 55px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.plan-icon i {
  font-size: 1.4rem;
  color: var(--primary);
}

.pricing-page-card .plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
  font-family: "IRANYekan", sans-serif;
}

.pricing-page-card .plan-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-family: "IRANYekan", sans-serif;
}

.pricing-page-card .price-tag {
  margin-bottom: 25px;
}

.pricing-page-card .price-tag .amount {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: "IRANYekan", sans-serif;
}

.pricing-page-card .features-list {
  text-align: right;
  margin-bottom: 22px;
  flex: 1;
}

.pricing-page-card .features-list li.disabled {
  color: #94a3b8;
}

.pricing-page-card .features-list li.disabled i {
  color: #cbd5e1;
}

.custom-plan-banner {
  background: var(--section-bg-alt);
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 35px 40px;
  margin-top: 50px;
}

.custom-plan-banner h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: "IRANYekan", sans-serif;
}

.custom-plan-banner p {
  color: var(--text-secondary);
  margin: 0;
  font-family: "IRANYekan", sans-serif;
}

/* --- Guarantee Section --- */
.guarantee-section {
  padding: 50px 0;
}

.guarantee-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px 45px;
  box-shadow: var(--card-shadow);
  border: 2px solid rgba(0, 208, 148, 0.2);
}

.guarantee-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.guarantee-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}

.guarantee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: "IRANYekan", sans-serif;
}

.guarantee-card p {
  color: var(--text-secondary);
  margin: 0;
  font-family: "IRANYekan", sans-serif;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
  background: var(--section-bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.faq-question {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: rgba(0, 200, 151, 0.04);
}

.faq-question h4 {
  font-size: 0.95rem;
  margin: 0;
  font-family: "IRANYekan", sans-serif;
  font-weight: 700;
}

.faq-question i {
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 22px 20px;
  max-height: 250px;
}

.faq-answer p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.8;
  font-family: "IRANYekan", sans-serif;
  font-size: 0.9rem;
}

/* --- Contact Page Styles --- */
.contact-page-section {
  padding: 50px 0 80px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card .icon-wrapper {
  width: 55px;
  height: 55px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-info-card .icon-wrapper i {
  font-size: 1.4rem;
  color: var(--primary);
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: "IRANYekan", sans-serif;
}

.contact-info-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.contact-form-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-family: "IRANYekan", sans-serif;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  font-family: "IRANYekan", sans-serif;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: "IRANYekan", sans-serif;
  transition: var(--transition-normal);
  background: var(--card-bg);
  color: var(--text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 208, 148, 0.15);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* --- Customers Page --- */
.customers-page-section {
  padding: 50px 0 80px;
}

.customer-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.logo-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  border: 1px solid var(--card-border);
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.logo-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.logo-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: "IRANYekan", sans-serif;
}

.logo-card span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: "IRANYekan", sans-serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.testimonial-full-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  border: 1px solid var(--card-border);
}

.testimonial-full-card:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
  margin-bottom: 14px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 0.95rem;
}

.testimonial-full-card .quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-style: italic;
  font-family: "IRANYekan", sans-serif;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-meta .avatar {
  width: 50px;
  height: 50px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-meta .avatar i {
  font-size: 1.5rem;
  color: var(--primary);
}

.testimonial-meta .info h5 {
  font-size: 0.95rem;
  margin-bottom: 3px;
  font-family: "IRANYekan", sans-serif;
}

.testimonial-meta .info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: "IRANYekan", sans-serif;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .page-title {
    font-size: 1.6rem;
  }

  .about-story {
    padding: 60px 0;
  }

  .story-content {
    padding-right: 0;
    margin-top: 30px;
  }

  .story-stats {
    justify-content: center;
  }

  .product-detail-card {
    padding: 25px;
  }

  .product-info {
    padding-right: 0;
    margin-top: 25px;
  }

  .pricing-page-card.featured {
    transform: none;
  }

  .pricing-page-card.featured:hover {
    transform: translateY(-5px);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .customer-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 25px 0 35px;
  }

  .page-title {
    font-size: 1.4rem;
  }

  .page-subtitle {
    font-size: 0.9rem;
  }

  .about-story {
    padding: 50px 0;
  }

  .story-image {
    padding: 15px;
  }

  .image-frame {
    padding: 40px 30px;
  }

  .ai-visual {
    width: 150px;
    height: 150px;
  }

  .ai-circle {
    width: 70px;
    height: 70px;
  }

  .ai-circle i {
    font-size: 1.8rem;
  }

  .floating-card {
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  .story-content h2 {
    font-size: 1.5rem;
  }

  .story-stats {
    gap: 25px;
  }

  .stat-box .stat-number {
    font-size: 1.5rem;
  }

  .mv-card,
  .value-card {
    padding: 28px 22px;
    margin-bottom: 15px;
  }

  .products-page-section {
    padding: 35px 0 60px;
  }

  .product-detail-card {
    padding: 22px;
    margin-bottom: 25px;
  }

  .product-visual {
    padding: 45px;
    min-height: 220px;
  }

  .product-visual .main-icon {
    font-size: 3.5rem;
  }

  .product-info h2 {
    font-size: 1.4rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 0.8rem;
  }

  .pricing-page-section {
    padding: 35px 0 60px;
  }

  .pricing-toggle {
    margin-bottom: 35px;
  }

  .toggle-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .pricing-page-card {
    padding: 25px 18px;
    margin-bottom: 15px;
  }

  .pricing-page-card .plan-name {
    font-size: 1.1rem;
  }

  .pricing-page-card .price-tag .amount {
    font-size: 1.8rem;
  }

  .custom-plan-banner {
    padding: 28px 22px;
    text-align: center;
  }

  .custom-plan-banner .col-lg-4 {
    text-align: center !important;
    margin-top: 15px;
  }

  .guarantee-card {
    padding: 28px 22px;
    text-align: center;
  }

  .guarantee-card .row {
    flex-direction: column;
    gap: 15px;
  }

  .guarantee-card .col-md-3 {
    text-align: center !important;
    margin-top: 15px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question h4 {
    font-size: 0.9rem;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .customer-logo-grid {
    gap: 15px;
  }

  .logo-card {
    padding: 25px 18px;
  }

  .logo-card i {
    font-size: 2rem;
  }

  .testimonial-full-card {
    padding: 25px 20px;
  }

  .timeline-item {
    gap: 18px;
    margin-bottom: 30px;
  }

  .timeline-marker {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .timeline-marker i {
    font-size: 0.95rem;
  }

  .timeline-content {
    padding: 18px;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.25rem;
  }

  .story-content h2 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .customer-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-card {
    padding: 20px 12px;
  }

  .logo-card i {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .logo-card h4 {
    font-size: 0.85rem;
  }
}

/* --- Customers Page Stats --- */
.customer-stats {
  padding: 60px 0;
  background: var(--section-bg-alt);
}

.stat-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--card-border);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: var(--primary);
}

.stat-card .stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: 'Shabnam', sans-serif !important;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: 'Shabnam', sans-serif !important;
}

/* --- Case Studies --- */
.case-studies-section {
  padding: 80px 0;
}

.case-study-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: var(--card-border);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
  border-color: rgba(0, 208, 148, 0.4);
}

.case-study-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(0, 208, 148, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.case-study-card .icon-box i {
  font-size: 1.8rem;
  color: var(--primary);
}

.case-study-card .industry {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.case-study-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-family: 'Shabnam', sans-serif !important;
}

.case-study-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.case-stats {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.case-stat {
  display: flex;
  flex-direction: column;
}

.case-stat .number {
  font-weight: 900;
  color: var(--text-main);
  font-size: 1.1rem;
}

.case-stat .label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* --- Industries ISO Cards --- */
.industries-section {
  padding: 80px 0;
  background: var(--section-bg-alt);
}

.iso-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  border: var(--card-border);
}

.iso-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--card-shadow);
  border-color: var(--primary);
}

.card-icon-float {
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  background: var(--section-bg-alt);
  border: 1px solid var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.card-icon-float i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card-icon-float.color-2 {
  background: var(--section-bg-alt);
  border-color: #3b82f6;
}

.card-icon-float.color-2 i {
  color: #3b82f6;
}

.card-icon-float.color-3 {
  background: var(--section-bg-alt);
  border-color: #ec4899;
}

.card-icon-float.color-3 i {
  color: #ec4899;
}

.card-icon-float.color-4 {
  background: var(--section-bg-alt);
  border-color: #f59e0b;
}

.card-icon-float.color-4 i {
  color: #f59e0b;
}

.iso-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: 'Shabnam', sans-serif !important;
}

.iso-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}