/* ==================== Child Theme - About Us Page Styles ==================== */
/* 
 * Purpose: About Us page specific styles and overrides
 * 
 * Rules:
 * - Scope everything to body.page-about to avoid cross-page impact
 * - Only define styles that are specific to the About Us page
 * - Override global components only when About page needs different behavior
 * 
 * DO NOT:
 * - Redefine global utility classes (section-padding, etc.) - they're in components.css
 * - Add styles that could be reused on other pages (move to components.css instead)
 */

/* WordPress automatically adds body classes based on template */
/* For About Us page: body.page-template-page-about-us-php or body.page-id-XXX */
/* Styles are scoped to these selectors to avoid cross-page impact */

/* ==================== Video Modal (About Page Specific) ==================== */
body.page-template-page-about-us-php .ss-modal--video,
body.page-about .ss-modal--video,
main.page-about ~ .ss-modal--video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

body.page-template-page-about-us-php .ss-modal--video.ss-modal--open,
body.page-about .ss-modal--video.ss-modal--open,
main.page-about ~ .ss-modal--video.ss-modal--open {
  display: flex;
}

body.page-template-page-about-us-php .ss-modal--video.ss-modal--hidden,
body.page-about .ss-modal--video.ss-modal--hidden,
main.page-about ~ .ss-modal--video.ss-modal--hidden {
  display: none;
}

body.page-template-page-about-us-php .ss-modal__backdrop,
body.page-about .ss-modal__backdrop,
main.page-about ~ .ss-modal--video .ss-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

body.page-template-page-about-us-php .ss-modal__content,
body.page-about .ss-modal__content,
main.page-about ~ .ss-modal--video .ss-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10001;
}

body.page-template-page-about-us-php .ss-modal__close,
body.page-about .ss-modal__close,
main.page-about ~ .ss-modal--video .ss-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

body.page-template-page-about-us-php .ss-modal__close:hover,
body.page-about .ss-modal__close:hover,
main.page-about ~ .ss-modal--video .ss-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.page-template-page-about-us-php .ss-modal__iframe,
body.page-about .ss-modal__iframe,
main.page-about ~ .ss-modal--video .ss-modal__iframe {
  width: 100%;
  height: 675px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: none;
}

@media (max-width: 768px) {
  body.page-template-page-about-us-php .ss-modal__iframe,
  body.page-about .ss-modal__iframe,
  main.page-about ~ .ss-modal--video .ss-modal__iframe {
    height: 280px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  body.page-template-page-about-us-php .ss-modal__iframe,
  body.page-about .ss-modal__iframe,
  main.page-about ~ .ss-modal--video .ss-modal__iframe {
    height: 520px;
  }
}

/* ==================== Video Play Button ==================== */
body.page-template-page-about-us-php .about-intro__video-btn,
body.page-about .about-intro__video-btn,
main.page-about .about-intro__video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-color, #2b67f6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
}

body.page-template-page-about-us-php .about-intro__video-btn:hover,
body.page-about .about-intro__video-btn:hover,
main.page-about .about-intro__video-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}

/* ==================== Capabilities Grid ==================== */
body.page-template-page-about-us-php .capabilities__grid,
body.page-about .capabilities__grid,
main.page-about .capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1199px) {
  body.page-template-page-about-us-php .capabilities__grid,
  body.page-about .capabilities__grid,
  main.page-about .capabilities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 991px) {
  body.page-template-page-about-us-php .capabilities__grid,
  body.page-about .capabilities__grid,
  main.page-about .capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 575px) {
  body.page-template-page-about-us-php .capabilities__grid,
  body.page-about .capabilities__grid,
  main.page-about .capabilities__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

body.page-template-page-about-us-php .capabilities__item,
body.page-about .capabilities__item,
main.page-about .capabilities__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.page-template-page-about-us-php .capabilities__item-image,
body.page-about .capabilities__item-image,
main.page-about .capabilities__item-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

body.page-template-page-about-us-php .capabilities__item-title,
body.page-about .capabilities__item-title,
main.page-about .capabilities__item-title {
  padding: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--heading-primary-color, #1f2d3d);
  text-decoration: none;
  margin-top: auto;
}

body.page-template-page-about-us-php .capabilities__item-title:hover,
body.page-about .capabilities__item-title:hover,
main.page-about .capabilities__item-title:hover {
  color: var(--accent-color, #FF9933);
}

/* ==================== FAQ Section (About Page Specific) ==================== */
/* Note: Uses global .ss-faq component from components.css */
/* Only add About page specific overrides if needed */

/* ==================== FAQ Section (About Page Specific) ==================== */
/* Note: Uses global .ss-faq component from components.css */
/* Only add About page specific overrides if needed */

/* ==================== Company Introduction Section ==================== */
body.page-template-page-about-us-php .about-intro__content,
body.page-about .about-intro__content,
main.page-about .about-intro__content {
  width: 100%;
}

/* Trust Badges */
body.page-template-page-about-us-php .about-intro__trust-badges,
body.page-about .about-intro__trust-badges,
main.page-about .about-intro__trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
}

body.page-template-page-about-us-php .about-intro__trust-badge,
body.page-about .about-intro__trust-badge,
main.page-about .about-intro__trust-badge {
  text-align: center;
}

body.page-template-page-about-us-php .about-intro__trust-badge-title,
body.page-about .about-intro__trust-badge-title,
main.page-about .about-intro__trust-badge-title {
  font-weight: 600;
  color: var(--primary-color, #2b67f6);
  margin-bottom: 0.5rem;
}

body.page-template-page-about-us-php .about-intro__trust-badge-text,
body.page-about .about-intro__trust-badge-text,
main.page-about .about-intro__trust-badge-text {
  font-size: 0.875rem;
  color: var(--body-text-color, #5a6c7d);
}

/* Override ss-section-title for About page - left align */
body.page-template-page-about-us-php .about-intro__title.ss-section-title,
body.page-about .about-intro__title.ss-section-title,
main.page-about .about-intro__title.ss-section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--heading-primary-color, #1f2d3d);
  margin: 0 0 16px;
  padding-top: 40px !important;
}

body.page-template-page-about-us-php .about-intro__description,
body.page-about .about-intro__description,
main.page-about .about-intro__description {
  color: var(--body-text-color, #5a6c7d);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

body.page-template-page-about-us-php .about-intro__description strong,
body.page-about .about-intro__description strong,
main.page-about .about-intro__description strong {
  color: var(--heading-primary-color, #1f2d3d);
  font-weight: 700;
}

/* Stats Grid - Enhanced card styling */
body.page-template-page-about-us-php .about-intro__stats,
body.page-about .about-intro__stats,
main.page-about .about-intro__stats {
  margin: 24px 0 34px;
}

body.page-template-page-about-us-php .about-intro__stat-item,
body.page-about .about-intro__stat-item,
main.page-about .about-intro__stat-item {
  text-align: center;
  background: #f7f9fc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-template-page-about-us-php .about-intro__stat-item:hover,
body.page-about .about-intro__stat-item:hover,
main.page-about .about-intro__stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

body.page-template-page-about-us-php .about-intro__stat-number,
body.page-about .about-intro__stat-number,
main.page-about .about-intro__stat-number {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-color, #2b67f6);
  line-height: 1.1;
  margin-bottom: 6px;
}

body.page-template-page-about-us-php .about-intro__stat-label,
body.page-about .about-intro__stat-label,
main.page-about .about-intro__stat-label {
  color: var(--body-text-color, #5a6c7d);
  font-weight: 600;
  font-size: 14px;
}

/* Features and Video Layout */
body.page-template-page-about-us-php .about-intro__features-video,
body.page-about .about-intro__features-video,
main.page-about .about-intro__features-video {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

body.page-template-page-about-us-php .about-intro__feature-list,
body.page-about .about-intro__feature-list,
main.page-about .about-intro__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  gap: 10px;
}

/* Enhanced feature item styling */
body.page-template-page-about-us-php .about-intro__feature-item,
body.page-about .about-intro__feature-item,
main.page-about .about-intro__feature-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--heading-primary-color, #1f2d3d);
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-template-page-about-us-php .about-intro__feature-item:hover,
body.page-about .about-intro__feature-item:hover,
main.page-about .about-intro__feature-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

body.page-template-page-about-us-php .about-intro__actions,
body.page-about .about-intro__actions,
main.page-about .about-intro__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Video Section */
body.page-template-page-about-us-php .about-intro__video,
body.page-about .about-intro__video,
main.page-about .about-intro__video {
  position: relative;
}

body.page-template-page-about-us-php .about-intro__video-wrapper,
body.page-about .about-intro__video-wrapper,
main.page-about .about-intro__video-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-template-page-about-us-php .about-intro__video-wrapper:hover,
body.page-about .about-intro__video-wrapper:hover,
main.page-about .about-intro__video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

body.page-template-page-about-us-php .about-intro__video-image,
body.page-about .about-intro__video-image,
main.page-about .about-intro__video-image {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

body.page-template-page-about-us-php .about-intro__video-wrapper:hover .about-intro__video-image,
body.page-about .about-intro__video-wrapper:hover .about-intro__video-image,
main.page-about .about-intro__video-wrapper:hover .about-intro__video-image {
  opacity: 1;
}

/* ==================== Why Choose Us Section ==================== */
body.page-template-page-about-us-php .why-choose__item,
body.page-about .why-choose__item,
main.page-about .why-choose__item {
  height: 100%;
  border-radius: 20px;
  padding: 28px 22px;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid transparent;
  box-shadow: 0 10px 28px rgba(17,17,17,.08);

  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top accent */
body.page-template-page-about-us-php .why-choose__item::before,
body.page-about .why-choose__item::before,
main.page-about .why-choose__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EC4899 0%, #A78BFA 100%);
}

body.page-template-page-about-us-php .why-choose__item:hover,
body.page-about .why-choose__item:hover,
main.page-about .why-choose__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(17,17,17,.14);
  border-color: rgba(236, 72, 153, 0.25);
}

body.page-template-page-about-us-php .why-choose__item-title,
body.page-about .why-choose__item-title,
main.page-about .why-choose__item-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
}

body.page-template-page-about-us-php .why-choose__item-description,
body.page-about .why-choose__item-description,
main.page-about .why-choose__item-description {
  margin: 0;
  color: #4B5563;
  font-size: 15px;
  line-height: 1.75;
}

/* ==================== Manufacturing Process Section ==================== */
body.page-template-page-about-us-php .process__item,
body.page-about .process__item,
main.page-about .process__item {
  height: 100%;
  background: #f7f9fc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

body.page-template-page-about-us-php .process__item:hover,
body.page-about .process__item:hover,
main.page-about .process__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  background: #fff;
}

body.page-template-page-about-us-php .process__item-step,
body.page-about .process__item-step,
main.page-about .process__item-step {
  font-weight: 800;
  color: var(--primary-color, #2b67f6);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
}

body.page-template-page-about-us-php .process__item-title,
body.page-about .process__item-title,
main.page-about .process__item-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-primary-color, #1f2d3d);
  line-height: 1.4;
}

body.page-template-page-about-us-php .process__item-description,
body.page-about .process__item-description,
main.page-about .process__item-description {
  margin: 0;
  color: var(--body-text-color, #5a6c7d);
  font-size: 14px;
  line-height: 1.7;
}

/* ==================== Factory Strength Section ==================== */
body.page-template-page-about-us-php .strength__item,
body.page-about .strength__item,
main.page-about .strength__item {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-template-page-about-us-php .strength__item:hover,
body.page-about .strength__item:hover,
main.page-about .strength__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

body.page-template-page-about-us-php .strength__item-number,
body.page-about .strength__item-number,
main.page-about .strength__item-number {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-color, #2b67f6);
  line-height: 1.1;
  margin-bottom: 6px;
}

body.page-template-page-about-us-php .strength__item-label,
body.page-about .strength__item-label,
main.page-about .strength__item-label {
  color: var(--body-text-color, #5a6c7d);
  font-weight: 600;
  font-size: 14px;
}

/* ==================== CTA Section ==================== */
body.page-template-page-about-us-php .section-cta,
body.page-about .section-cta,
main.page-about .section-cta {
  background: linear-gradient(135deg, #2b67f6 0%, #1a4fd3 100%);
  color: #fff;
}

body.page-template-page-about-us-php .cta__content,
body.page-about .cta__content,
main.page-about .cta__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 48px 0;
}

body.page-template-page-about-us-php .cta__text,
body.page-about .cta__text,
main.page-about .cta__text {
  flex: 1 1 auto;
  min-width: 0;
}

body.page-template-page-about-us-php .cta__title,
body.page-about .cta__title,
main.page-about .cta__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  max-width: 720px;
}

body.page-template-page-about-us-php .cta__actions-container,
body.page-about .cta__actions-container,
main.page-about .cta__actions-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

body.page-template-page-about-us-php .cta__buttons,
body.page-about .cta__buttons,
main.page-about .cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

body.page-template-page-about-us-php .section-cta .cta__buttons .ss-btn,
body.page-about .section-cta .cta__buttons .ss-btn,
main.page-about .section-cta .cta__buttons .ss-btn {
  width: 100%;
  justify-content: center;
}

body.page-template-page-about-us-php .section-cta .cta__buttons .ss-btn--primary,
body.page-about .section-cta .cta__buttons .ss-btn--primary,
main.page-about .section-cta .cta__buttons .ss-btn--primary {
  background: #ffffff;
  color: #1a4fd3;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

body.page-template-page-about-us-php .section-cta .cta__buttons .ss-btn--primary:hover,
body.page-about .section-cta .cta__buttons .ss-btn--primary:hover,
main.page-about .section-cta .cta__buttons .ss-btn--primary:hover {
  background: #f8fafc;
}

body.page-template-page-about-us-php .section-cta .cta__buttons .ss-btn--secondary,
body.page-about .section-cta .cta__buttons .ss-btn--secondary,
main.page-about .section-cta .cta__buttons .ss-btn--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

body.page-template-page-about-us-php .section-cta .cta__buttons .ss-btn--secondary:hover,
body.page-about .section-cta .cta__buttons .ss-btn--secondary:hover,
main.page-about .section-cta .cta__buttons .ss-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1200px) {
  body.page-template-page-about-us-php .cta__content,
  body.page-about .cta__content,
  main.page-about .cta__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.page-template-page-about-us-php .cta__actions-container,
  body.page-about .cta__actions-container,
  main.page-about .cta__actions-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body.page-template-page-about-us-php .cta__content,
  body.page-about .cta__content,
  main.page-about .cta__content {
    padding: 34px 0;
  }

  body.page-template-page-about-us-php .cta__title,
  body.page-about .cta__title,
  main.page-about .cta__title {
    font-size: 28px;
  }

  body.page-template-page-about-us-php .cta__buttons,
  body.page-about .cta__buttons,
  main.page-about .cta__buttons {
    min-width: 0;
    width: 100%;
  }
}

/* ==================== Responsive ==================== */
/* About Us Page: CTA Section Overrides */
body.page-template-page-about-us-php .section-cta .ss-container--home,
body.page-about .section-cta .ss-container--home,
main.page-about .section-cta .ss-container--home {
  background-color: transparent;
}

body.page-template-page-about-us-php .section-cta .cta__title,
body.page-about .section-cta .cta__title,
main.page-about .section-cta .cta__title,
body.page-template-page-about-us-php .section-cta .cta__description,
body.page-about .section-cta .cta__description,
main.page-about .section-cta .cta__description {
  color: #fff;
}

@media (max-width: 1200px) {
  body.page-template-page-about-us-php .about-intro__features-video,
  body.page-about .about-intro__features-video,
  main.page-about .about-intro__features-video {
    grid-template-columns: 1fr;
  }

  body.page-template-page-about-us-php .cta__content,
  body.page-about .cta__content,
  main.page-about .cta__content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  body.page-template-page-about-us-php .about-intro__title.ss-section-title,
  body.page-about .about-intro__title.ss-section-title,
  main.page-about .about-intro__title.ss-section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  body.page-template-page-about-us-php .about-intro__description,
  body.page-about .about-intro__description,
  main.page-about .about-intro__description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  body.page-template-page-about-us-php .about-intro__stat-number,
  body.page-about .about-intro__stat-number,
  main.page-about .about-intro__stat-number {
    font-size: 28px;
  }

  body.page-template-page-about-us-php .about-intro__stat-item,
  body.page-about .about-intro__stat-item,
  main.page-about .about-intro__stat-item {
    padding: 16px 14px;
  }

  body.page-template-page-about-us-php .about-intro__feature-item,
  body.page-about .about-intro__feature-item,
  main.page-about .about-intro__feature-item {
    font-size: 14px;
    padding: 10px 12px;
  }

  body.page-template-page-about-us-php .about-intro__actions,
  body.page-about .about-intro__actions,
  main.page-about .about-intro__actions {
    flex-direction: column;
    gap: 12px;
  }

  body.page-template-page-about-us-php .about-intro__actions .ss-btn,
  body.page-about .about-intro__actions .ss-btn,
  main.page-about .about-intro__actions .ss-btn {
    width: 100%;
    justify-content: center;
  }

  /* Why Choose Us responsive */
  body.page-template-page-about-us-php .why-choose__item-title,
  body.page-about .why-choose__item-title,
  main.page-about .why-choose__item-title {
    font-size: 16px;
  }

  body.page-template-page-about-us-php .why-choose__item-description,
  body.page-about .why-choose__item-description,
  main.page-about .why-choose__item-description {
    font-size: 13px;
  }

  body.page-template-page-about-us-php .why-choose__item,
  body.page-about .why-choose__item,
  main.page-about .why-choose__item {
    padding: 16px 14px;
  }

  /* Manufacturing Process responsive */
  body.page-template-page-about-us-php .process__item-step,
  body.page-about .process__item-step,
  main.page-about .process__item-step {
    font-size: 14px;
  }

  body.page-template-page-about-us-php .process__item-title,
  body.page-about .process__item-title,
  main.page-about .process__item-title {
    font-size: 15px;
  }

  body.page-template-page-about-us-php .process__item-description,
  body.page-about .process__item-description,
  main.page-about .process__item-description {
    font-size: 13px;
  }

  body.page-template-page-about-us-php .process__item,
  body.page-about .process__item,
  main.page-about .process__item {
    padding: 16px 14px;
  }

  /* Factory Strength responsive */
  body.page-template-page-about-us-php .strength__item-number,
  body.page-about .strength__item-number,
  main.page-about .strength__item-number {
    font-size: 28px;
  }

  body.page-template-page-about-us-php .strength__item-label,
  body.page-about .strength__item-label,
  main.page-about .strength__item-label {
    font-size: 13px;
  }

  body.page-template-page-about-us-php .strength__item,
  body.page-about .strength__item,
  main.page-about .strength__item {
    padding: 18px 14px;
  }
}

@media (max-width: 768px) {
  
  body.page-template-page-about-us-php .ss-modal__close,
  body.page-about .ss-modal__close,
  main.page-about ~ .ss-modal--video .ss-modal__close {
    top: -30px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  body.page-template-page-about-us-php .capabilities-prev,
  body.page-template-page-about-us-php .capabilities-next,
  body.page-about .capabilities-prev,
  body.page-about .capabilities-next,
  main.page-about .capabilities-prev,
  main.page-about .capabilities-next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  body.page-template-page-about-us-php .capabilities-prev,
  body.page-about .capabilities-prev,
  main.page-about .capabilities-prev {
    left: -10px;
  }

  body.page-template-page-about-us-php .capabilities-next,
  body.page-about .capabilities-next,
  main.page-about .capabilities-next {
    right: -10px;
  }

  body.page-template-page-about-us-php .cta__title,
  body.page-about .cta__title,
  main.page-about .cta__title {
    font-size: 28px;
  }

  body.page-template-page-about-us-php .cta__description,
  body.page-about .cta__description,
  main.page-about .cta__description {
    font-size: 14px;
  }
}

