/* ===== SHARED PAGE STYLES — Biware.ma ===== */

/* Page Hero Banner */
.page-hero {
  background: linear-gradient(135deg, #232B53 0%, #213878 55%, #2295B1 100%);
  color: white;
  padding: 120px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: rgba(97, 197, 232, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 400px;
  height: 400px;
  background: rgba(34, 149, 177, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: white;
  text-decoration: none;
}

.page-breadcrumb a:hover { opacity: 0.85; }
.page-breadcrumb span { margin: 0 8px; }

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  padding: 80px 5%;
}

.section-alt {
  padding: 80px 5%;
  background: #f8f9fd;
}

.section-center {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.section-title-bar {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2295B1, #61C5E8);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #213878, #2295B1);
  color: white;
  padding: 80px 5%;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: #213878;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-white:hover {
  background: #f0f0f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 15px;
  font-size: 1rem;
}

.btn-outline-white:hover {
  background: white;
  color: #213878;
}

/* Brand button */
.btn-brand {
  display: inline-block;
  padding: 14px 36px;
  background: #2295B1;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-brand:hover {
  background: #1a7a96;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 149, 177, 0.35);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: #213878;
  color: white;
  text-align: center;
}

.stat-item {
  padding: 50px 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #61C5E8;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 400;
}

/* Page cards */
.page-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-card {
  background: white;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eef0f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(33, 56, 120, 0.12);
}

.page-card-icon {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* Fond coloré — utilisé pour "Notre Expertise" uniquement */
.page-card-icon-filled {
  background: linear-gradient(135deg, #e3f0f8, #c8e4f2);
}

/* Icône FA dans une carte à fond transparent : plus grande et colorée */
.page-card-icon:not(.page-card-icon-filled) i {
  color: #2295B1;
  font-size: 2rem;
}

/* Icône FA dans une carte à fond coloré : couleur brand foncé */
.page-card-icon-filled i { color: #213878; font-size: 1.5rem; }

/* Bloc icône Mission / Vision / Valeurs — fond transparent, centré */
.about-block-icon {
  width: 64px; height: 64px;
  background: transparent;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 2.4rem;
}
.about-block-icon i { color: #2295B1; font-size: 2.4rem; }

.page-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 12px;
}

.page-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

.page-card .card-link {
  display: inline-block;
  margin-top: 18px;
  color: #2295B1;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.page-card .card-link:hover { text-decoration: underline; }

/* Forms */
.form-section {
  padding: 80px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.biware-form {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
  border: 1px solid #eef0f5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e3eb;
  border-radius: 10px;
  font-size: 0.97rem;
  color: #333;
  background: #fafbfd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2295B1;
  box-shadow: 0 0 0 3px rgba(34, 149, 177, 0.12);
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success-msg {
  display: none;
  background: #e8f8f2;
  color: #1a7a50;
  border: 1px solid #b2e8d0;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  font-weight: 500;
}

/* Accordion / FAQ */
.accordion-item {
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #232B53;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
  font-family: inherit;
}

.accordion-header:hover { background: #f5f7fb; }

.accordion-header .acc-icon {
  font-size: 1.2rem;
  color: #2295B1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-header.open .acc-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  background: white;
}

.accordion-body.open { display: block; }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #eef0f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(33,56,120,0.12);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #213878, #2295B1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

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

.blog-tag {
  display: inline-block;
  background: #e3f0f8;
  color: #2295B1;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-meta {
  font-size: 0.82rem;
  color: #999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  color: #2295B1;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.blog-read-more:hover { text-decoration: underline; }

/* Project / realisations cards */
.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(33,56,120,0.13);
}

.project-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.project-card-body {
  padding: 22px;
}

.project-badge {
  display: inline-block;
  background: #213878;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.project-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 8px;
}

.project-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* Partner logos */
.partner-group {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.partner-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: #213878;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e3f0f8;
}

.partner-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.partner-logo-item {
  background: white;
  border-radius: 12px;
  padding: 20px 30px;
  border: 1px solid #eef0f5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(33,56,120,0.1);
}

.partner-logo-item img {
  height: 45px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.partner-logo-item:hover img { filter: grayscale(0); }

/* Info cards (contact, support) */
.info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #eef0f5;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e3f0f8, #c8e4f2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 6px;
}

.info-card-content p,
.info-card-content a {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}

.info-card-content a:hover { color: #2295B1; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #213878, #2295B1);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Solution alternating layout */
.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 80px;
  align-items: center;
}

.solution-block.reverse { direction: rtl; }
.solution-block.reverse > * { direction: ltr; }

.solution-block-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #213878, #2295B1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.solution-block h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 16px;
}

.solution-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.solution-block ul {
  list-style: none;
  margin-bottom: 28px;
}

.solution-block ul li {
  padding: 6px 0;
  color: #444;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-block ul li::before {
  content: '✓';
  color: #2295B1;
  font-weight: 700;
  flex-shrink: 0;
}

.solution-visual {
  background: linear-gradient(135deg, #e3f0f8, #c8e4f2);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  flex-shrink: 0;
  /* taille définie par le contenu */
  width: fit-content;
  align-self: flex-start;
}
.solution-visual img {
  display: block;
  max-width: 100%;
  height: auto;
  /* pas d'agrandissement au-delà de la taille naturelle */
  max-width: none;
  width: auto;
}

/* Legal page */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5%;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #232B53;
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #213878;
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content a {
  color: #2295B1;
  text-decoration: underline;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #eef0f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(33,56,120,0.12);
}

.product-card-img {
  height: 180px;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  padding: 20px;
}

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

.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2295B1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.product-card h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: #232B53;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card .btn-brand {
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.88rem;
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid #dce0ec;
  background: white;
  color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: #213878;
  color: white;
  border-color: #213878;
}

.search-bar-wrap {
  max-width: 500px;
  margin: 0 auto 30px;
  position: relative;
}

.search-bar-wrap input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border-radius: 30px;
  border: 1.5px solid #dce0ec;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-bar-wrap input:focus { border-color: #2295B1; }

.search-bar-wrap .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1.1rem;
}

/* ===== FONT AWESOME icon colors ===== */
.page-card-icon i       { font-size: 1.9rem; }
.info-card-icon i       { color: #2295B1; font-size: 1.25rem; }
.solution-block-icon i  { color: #fff;    font-size: 2.2rem;  }
.blog-card-img i        { color: rgba(255,255,255,0.92); font-size: 2.8rem; }
.process-step-number i  { color: #fff;    font-size: 1.3rem;  }
.solution-visual i      { color: #2295B1; font-size: 4.5rem; opacity: 0.55; }
[dir="rtl"] .search-bar-wrap input { padding: 14px 20px 14px 50px; }
[dir="rtl"] .search-bar-wrap .search-icon { right: auto; left: 18px; }

/* ===== SCROLLING CLIENT LOGOS ===== */
.clients-scroll-section { padding: 60px 0; background: #ffffff; overflow: hidden; }
.clients-scroll-outer {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}
.clients-scroll-outer::before,
.clients-scroll-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-scroll-outer::before { left: 0;  background: linear-gradient(to right, #ffffff, transparent); }
.clients-scroll-outer::after  { right: 0; background: linear-gradient(to left,  #ffffff, transparent); }
.clients-track {
  display: flex;
  gap: 20px;
  animation: scroll-clients 40s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.clients-track-reverse { animation-direction: reverse; }
@keyframes scroll-clients {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Carte = simple conteneur invisible, juste l'espacement */
.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  flex-shrink: 0;
  cursor: default;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.client-logo-card:hover {
  opacity: 1;
  transform: scale(1.07);
}
/* Conteneur image */
.client-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-img img {
  height: 150px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}
/* Fallback initiales si pas de photo */
.client-initial {
  height: 52px;
  min-width: 52px;
  padding: 0 14px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: white;
  letter-spacing: -0.5px;
}
/* Nom et secteur masqués — plus utilisés dans le bandeau */
.client-name, .client-sector { display: none; }
.client-overlay { display: none; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px 30px 28px;
  box-shadow: 0 6px 28px rgba(33,56,120,0.08);
  border: 1px solid #eef0f5;
  position: relative;
}
.testimonial-quote {
  font-size: 3.5rem;
  color: #e3f0f8;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}
.testimonial-text  { font-size: 0.96rem; color: #555; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author{ display: flex; align-items: center; gap: 14px; border-top: 1px solid #f0f0f0; padding-top: 18px; }
.testimonial-avatar{
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #213878, #2295B1);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-info h5  { font-size: 0.92rem; font-weight: 700; color: #232B53; margin-bottom: 2px; }
.testimonial-info span{ font-size: 0.8rem; color: #aaa; }
.stars { color: #f5a623; font-size: 0.82rem; margin-bottom: 14px; letter-spacing: 2px; }
.scroll-row-gap { margin-top: 20px; }

/* ===== RTL ===== */
[dir="rtl"] .accordion-header { text-align: right; }
[dir="rtl"] .accordion-header .acc-icon { margin-left: 0; margin-right: 16px; }
[dir="rtl"] .btn-outline-white { margin-left: 0; margin-right: 15px; }
[dir="rtl"] .solution-block.reverse { direction: ltr; }
[dir="rtl"] .solution-block ul li { flex-direction: row-reverse; }
[dir="rtl"] .info-card { flex-direction: row-reverse; }
[dir="rtl"] .page-hero::before { right: auto; left: -15%; }
[dir="rtl"] .page-hero::after { left: auto; right: -8%; }

/* Responsive */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .solution-block { grid-template-columns: 1fr; gap: 40px; }
  .solution-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 100px 5% 60px; }
  .section, .section-alt { padding: 60px 5%; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .biware-form { padding: 30px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .btn-outline-white { margin-left: 0; margin-top: 12px; display: inline-block; }
  .section-title { font-size: 1.8rem; }
  .three-col { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .solution-visual { height: 220px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .process-steps { grid-template-columns: 1fr; }
}
