.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero-section {
  padding-bottom: 50px;
  margin-bottom: 100px;
  margin-top: 80px;
}
.container-hero-section {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.hero-section-wrapper {
  position: relative;
}
.hero-card {
  position: relative;
  width: 100%;
  height: 620px;
  background-color: #eff6ff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.hero-content {
  margin-top: 100px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: absolute;
  z-index: 5;
}
.hero-circles {
  position: absolute;
  top: -29%;
  right: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.circle--1 {
  width: 698px;
  height: 698px;
  background-color: rgba(216, 233, 255, 0.2);
}
.circle--2 {
  width: 616px;
  height: 616px;
  background-color: rgba(216, 233, 255, 0.4);
}
.circle--3 {
  width: 534px;
  height: 534px;
  background-color: rgba(216, 233, 255, 0.6);
}
.circle--4 {
  width: 452px;
  height: 452px;
  background-color: rgba(216, 233, 255, 0.8);
}

.hero-hollow {
  position: absolute;
  width: 403px;
  height: 403px;
  border-radius: 50%;
  background-color: rgba(2, 116, 179, 0.12);
  top: 75%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(250px);
}
.hero-hollow--left {
  left: -290px;
}
.hero-hollow--right {
  right: -290px;
}
.hero-title {
  color: var(--color-primary);
  font-size: 36px;
  font-weight: bold;
}
.hero-txt {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 5px 24px;
  font-size: 13px;
  font-weight: 400;
}
.hero-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-pastel-main) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.4;
}
.video-wrapper {
  width: 100%;
  max-width: 720px;
  max-height: 389px;
  position: absolute;
  top: 75%;
  right: 50%;
  transform: translate(50%, -50%);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  max-width: 720px;
  width: 100%;
  max-height: 389px;
}

.thumb-img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;

  aspect-ratio: 16 / 9;
}

.overlay {
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 8px;
  left: 8px;
  z-index: 2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(53.86px);
}

.play-btn-about {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.play-btn-about svg {
  width: 95px;
  height: 95px;
}

.arrow-btn-about {
  position: absolute;
  top: 37%;
  right: 18%;
  z-index: 10;
}
.arrow-btn-about svg {
  width: 97px;
  height: 120px;
}
.inova-about-logo {
  position: absolute;
  top: 3%;
  right: 3%;
  z-index: 10;
}
.video-title {
  position: absolute;
  bottom: 33px;
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-player {
  display: none;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}
/* ═══════════════════════════════════════════════════════
   showcase
═══════════════════════════════════════════════════════ */
.container-showcase {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.showcase-section > .container-showcase {
  height: 200vh;
}
.showcase-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.showcase-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100dvh;
}
.showcase-media-side {
  flex-basis: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-media-wrapper {
  width: 100%;
  max-width: 679px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 1.4s ease;
  will-change: opacity, transform;
}
.media-item.active {
  opacity: 1;
  z-index: 2;
}
.media-item img,
.media-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.showcase-text-side {
  flex-basis: 40%;
  height: 90%;
  overflow: visible;
  position: relative;
}
.text-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.text-item {
  height: 60dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.4s linear,
    transform 0.4s linear,
    filter 0.4s linear;
  will-change: transform, opacity, filter;
}
.text-item span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-weight: 400;
}
.text-item span::before {
  content: '';
  width: 32px;
  height: 1px;
  background-color: var(--color-primary);
  display: block;
}
.text-item h2 {
  font-size: 22px;
  color: var(--color-title);
  line-height: 1.5;
  margin-bottom: 16px;
}
.text-item p {
  color: var(--color-body-text);
  line-height: 1.7;
  font-size: 15px;
}
/* ═══════════════════════════════════════════════════════
   timeline
═══════════════════════════════════════════════════════ */

.timeline-section {
  position: relative;
  overflow: hidden;
  padding: 48px 120px;
  background: #0b7fbf;
  margin-top: 50px;
}

.timeline-bg-circle,
.timeline-bg-circle2 {
  position: absolute;

  width: 356px;
  height: 356px;
  border-radius: 50%;
  background-color: #1e8ecb;
}
.timeline-bg-circle {
  bottom: -207px;
  left: -207px;
}
.timeline-bg-circle2 {
  top: -207px;
  right: -207px;
}
.timeline-title {
  text-align: right;
  color: #54a5d2;
  font-size: 64px;
  font-weight: bold;
  position: absolute;
  /* padding: 0 20px; */
  z-index: 1;
  padding-bottom: 20px;
}

.timeline-viewport {
  position: relative;
  overflow: hidden;
}

.timeline-track {
  display: flex;
  flex-direction: row;
  gap: 32px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  margin-top: 124px;
}

.timeline-card {
  flex: 0 0 28%;
  min-width: 200px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.timeline-card__date {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 12px;
}

.timeline-card__dot-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.timeline-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-card__line {
  flex: 1;
  height: 0.5px;
  background: #ffffff;
}

.timeline-card__heading {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 16px;
}

.timeline-card__body {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  flex: 1;
}

.timeline-card__body.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.timeline-card__toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 0 0;
  display: none;
  gap: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.timeline-card__toggle.is-visible {
  display: flex;
}

.timeline-card__toggle:hover {
  opacity: 1;
}

.timeline-card__toggle-icon {
  font-size: 15px;
}
.timeline-card__toggle-label {
  font-size: 15px;
}

/* ───── Nav buttons ───── */
.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.timeline-nav__btn {
  width: 48px;
  height: 48px;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════
   goal
═══════════════════════════════════════════════════════ */
.goal-section {
  margin: 100px 0;
}

.goal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.goal-header {
  text-align: center;
  margin-bottom: 68px;
}

.goal-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 16px;
  color: var(--color-title);
}

.goal-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 24px;
  column-gap: 24px;
}
.grid-divider {
  grid-column: 2 / -2;
  height: 1px;
  background: #ddd;
}

.goal-item {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
}
.goal-item2 {
  border-right: 1px inset;
  border-left: 1px ridge;
}
.goal-item:nth-child(4),
.goal-item:nth-child(5) {
  position: relative;
}

.goal-item:nth-child(4)::before,
.goal-item:nth-child(5)::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -24px;
  right: 0;
  height: 1px;
  background: #ddd;
}

.goal-item:nth-child(4) {
  grid-column: 2 / 4;
}

.goal-item:nth-child(5) {
  grid-column: 4 / 6;
}

.goal-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.goal-item-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-title);
  margin-bottom: 12px;
  line-height: 24px;
}

.goal-item-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-body-text);
  line-height: 26px;
}

/* ═══════════════════════════════════════════════════════
   300project
═══════════════════════════════════════════════════════ */

.comments-section-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 24px;
}

.comments-section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-title);
  margin-bottom: 8px;
}

.comments-section-description {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-body-text);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  direction: ltr;
}

.stat-box {
  padding: 12px 16px;
  border: 1px solid var(--color-pastel-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-box p {
  color: var(--color-body-text);
  font-size: 16px;
}

.stat-number {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: bold;
}

.mobile-stat {
  display: none;
  border: 1px solid var(--color-pastel-main);
  border-radius: 8px;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.mobile-content {
  display: flex;
  gap: 8px;
  opacity: 1;
  align-items: center;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.mobile-content.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.mobile-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.mobile-stat span {
  display: block;
  color: var(--color-primary);
  font-size: 24px;
  font-weight: bold;
}

.mobile-stat p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-slider {
  overflow: hidden;
  width: 100%;
  margin: 16px 0;
  position: relative;
  direction: ltr;
}

.slider-track {
  display: flex;
  gap: 8px;
  width: max-content;
  will-change: transform;
}

.slider-right .slider-track {
  animation: logo-slide-left 40s linear infinite;
}

.slider-left .slider-track {
  animation: logo-slide-right 40s linear infinite;
}

.logo-slider:hover .slider-track {
  animation-play-state: paused;
}

@keyframes logo-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logo-slide-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.logo {
  width: 124px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fafafa;
}

.logo img {
  max-height: 28px;
}

.logo-slider:hover .logo img {
  filter: grayscale(100%);
  opacity: 0.4;
}

.logo:hover img {
  filter: grayscale(0) !important;
  opacity: 1 !important;
}
/* ===================op-section=================================== */

.op-section {
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.op-section-title {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.op-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: #424242;
  line-height: 30px;
}
.op-section-title p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #424242;
}
.op-box {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-user-select: none;
  user-select: none;
  margin-top: 48px;
  direction: ltr;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.op-track {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  width: max-content;
  min-width: 100%;
}
.op-box::-webkit-scrollbar {
  height: 6px;
}

.op-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  display: none;
}

.op-card {
  flex: 0 0 auto;
  height: 243px;
  border-radius: 16px;
  padding: 24px 16px;
  position: relative;
  border: #d1d5db solid 1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  direction: rtl;
}

.op-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(40, 80, 120, 0.05) 1px, transparent 2px);
  background-size: 20px 20px;
  pointer-events: none;
}
.op-card::after {
  content: '';
  position: absolute;
  width: 403px;
  height: 403px;
  bottom: 0px;
  right: 20px;
  border-radius: 50%;
  background: rgba(2, 116, 179, 0.15);
  filter: blur(80px);
  pointer-events: none;
}
.op-card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #424242;
  height: 104px;
  position: relative;
}

.op-stars {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 20px;
}

.op-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  gap: 8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-weight: 700;
  font-size: 14px;
  color: #424242;
  padding-left: 4px;
}

.user-txt {
  font-size: 12px;
  color: #6e7a86;
  font-weight: 400;
  line-height: 18px;
}

.op-pagination {
  display: flex;
  direction: rtl;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  flex-shrink: 0;
}

.op-dot {
  width: 8px;
  height: 8px;
  border: none;
  padding: 0;
  border-radius: 50%;
  background: #d1d5db;
  margin: 0 4px;
  cursor: pointer;
  transition: 0.3s;
}

.op-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #0066ff;
}

/* ═══════════════════════════════════════════════════════
   pic
═══════════════════════════════════════════════════════ */

/* ─── SECTION ─── */
.picteam-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin-top: 100px;
}

/* ─── DESKTOP TRACK ─── */
.picteam-track-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 522px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.picteam-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  gap: 20px;
  /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
  transition: transform 250ms ease-out 1ms;
}


/* Each slide on desktop */
.picteam-slide {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  transition: opacity 250ms ease-out;
  cursor: pointer;
}

/* CENTER slide */
.picteam-slide.active {
  width: 60%;
  right: 20%;
  z-index: 3;
  filter: none;
  border-radius: 16px;
}

/* PREV slide (right side in RTL) */
.picteam-slide.prev {
  width: 19%;
  right: 0;
  z-index: 2;
  filter: blur(1.5px);
  border-radius: 16px 0 0 16px;
}

/* NEXT slide (left side in RTL) */
.picteam-slide.next {
  width: 19%;
  left: 0;
  right: auto;
  z-index: 2;
  filter: blur(1.5px);
  border-radius: 0 16px 16px 0;
}

.picteam-slide.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.picteam-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay gradient on all slides */
.picteam-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
}

/* ─── CAPTION ─── */
.picteam-caption {
  position: absolute;
  bottom: 40px;
  right: 39px;
  z-index: 4;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s ease 0.1s,
    transform 0.45s ease 0.1s;
}

.picteam-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Vertical accent line */
.picteam-slide .picteam-accent-line {
  position: absolute;
  bottom: 32px;
  right: 23px;
  width: 0.5px;
  height: 52px;
  background: #dfdfdf;
  z-index: 5;
  border-radius: 2px;
}

/* ─── NAV BUTTONS (desktop) ─── */
.picteam-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 80px;
  background: rgba(26, 143, 227, 0.85);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
  outline: none;
}

.picteam-btn:hover {
  background: rgba(26, 143, 227, 1);
}

.picteam-btn-prev {
  right: 0;
}

.picteam-btn-next {
  left: 0;
}

/* ─── MOBILE SLIDER ─── */
.picteam-mobile-wrapper {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.picteam-mobile-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.picteam-mobile-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.picteam-mobile-slide img {
  width: 100%;
  /* min-height: 220px; */
  height: 100%;
  object-fit: cover;
  display: block;
}

.picteam-mobile-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  z-index: 1;
}

.picteam-mobile-caption {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 4;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease 0.1s,
    transform 0.45s ease 0.1s;
}

.picteam-mobile-caption.visible {
  opacity: 1;
  transform: translateY(0);
  
}

.picteam-mobile-slide .picteam-accent-line {
  position: absolute;
  bottom: 10px;
  right: 6px;
  width: 3px;
  height: 30px;
  background: #1a8fe3;
  z-index: 5;
  border-radius: 2px;
}

/* Pagination dots */
.picteam-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}

.picteam-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfdfdf;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    width 0.25s;
  outline: none;
  padding: 0;
}

.picteam-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════
   team
═══════════════════════════════════════════════════════ */
.team-section {
  padding: 100px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 32px;
}

.team-main-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-title);
  margin-bottom: 8px;
}

.team-main-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
}

.team-group {
  margin-bottom: 32px;
}
.team-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.team-group-dot {
  width: 9px;
  height: 9px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.team-group-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-title);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Card ─── */
.team-card {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  min-height: 96px;
}
.team-card-info {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.team-card-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-title);
  margin-bottom: 8px;
}

.team-card-role {
  font-size: 13px;
  color: var(--color-body-text);
  line-height: 1.8;
}

.team-card-photo {
  width: 124px;
  height: 124px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #eff6ff 0%, rgba(239, 246, 255, 0) 179.03%);
  border-radius: 16px;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* filter: grayscale(100%); */
  display: block;
}

/* ═══════════════════════════════════════════════════════
  live in inova
═══════════════════════════════════════════════════════ */
.live-section {
  padding-bottom: 20px;
  background: #ffffff;
  direction: rtl;
  overflow: hidden;
}

.live-section > .container {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.live-gallery {
  flex: 0 0 52%;
  align-self: center;
}

.live-gallery-image {
  width: 100%;
  height: auto;
}

.live-content {
  flex: 0 0 50%;
  text-align: right;
}

.live-title {
  font-size: 64px;
  font-weight: bold;
  color: #cce3f0;
}

.live-subtitle {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  color: var(--color-title);
}

.live-text {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.live-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px 10px 20px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.live-button svg {
  flex-shrink: 0;
}
