/* ============================================================
   COMMON LAYOUT & WRAPPERS (layout.css)
   ============================================================ */
.home-hero-wrapper,
.home-services-wrapper,
.home-founder-wrapper,
.home-testimonial-wrapper {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 30px 90px rgba(0, 20, 40, 0.07), 0 8px 30px rgba(0, 0, 0, 0.02);
  padding: 56px 60px 48px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.home-hero-bottom {
  display: flex;
  align-items: center;
  gap: 48px;
}

.home-features-list {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-founder-block {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.home-founder-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.home-founder-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafcfd;
  border-radius: 24px;
  border: 1px solid #eef2f6;
  padding: 12px;
}

.home-testimonial-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}