/* ===== About: company intro (section-head + machine card) ===== */
.company-intro {
  background: #fafafa;
  padding: 5rem 2.5rem;
}

.company-intro__card {
  max-width: 1520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 4rem;
}

.company-intro__content {
  flex: 1;
  max-width: 580px;
}

.company-intro__content h3 {
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: var(--fs-32);
  color: #15233a;
  line-height: 1.2;
  margin: 0.75rem 0 0;
}

.company-intro__rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.company-intro__content p {
  font-family: var(--font-fira);
  font-size: 1rem;
  font-weight: 600;
  color: #2b3442;
  line-height: 1.75;
  margin: 0;
}

.company-intro__media {
  flex: 0 0 48%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-intro__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  height: auto;
  transform: scaleX(1);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.15));
}

.company-intro__dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  background-image: radial-gradient(#c7d0da 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  z-index: 1;
}

@media (max-width: 992px) {
  .company-intro__card {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
  }
  .company-intro__content,
  .company-intro__media {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  /* net scales to the machine (centered), like the home intro */
  .company-intro__dots {
    height: 100%;
    width: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .company-intro {
    padding: 3rem 1.25rem;
  }
}

/* ===== About: feature cards row ===== */
.about-features {
  background: #fafafa;
  padding: 0 2.5rem 5rem;
}

.about-features__grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #dde5ef;
  border-radius: 16px;
  padding: 2rem 1.75rem;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fbede2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3.feature-card__title {
  font-family: "Faustina", serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
  margin: 0 0 0.85rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: #6b7785;
  line-height: 1.6;
  margin: 0;
}

.feature-card__desc strong {
  color: #2b3442;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-features {
    padding: 0 1.25rem 3rem;
  }
  .about-features__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About: parent company (Biophore) ===== */
.parent-company {
  background: #fff;
  padding: 5rem 2.5rem;
}

.parent-company .section-head {
  max-width: 1040px;
}

.parent-company .section-head p {
  max-width: none;
  color: #2b3442;
  font-weight: 600;
}

.parent-company .section-head p a {
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: none;
}

.parent-company__grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 1.5rem;
}

.parent-company .feature-card {
  border-color: #2e8b57;
}

.parent-company .feature-card__icon,
.about-features .feature-card__icon {
  background: transparent;
  width: fit-content;
  height: auto;
}

.about-features .feature-card__icon lottie-player {
  width: 80px;
  height: 80px;
}

.parent-company .feature-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.parent-company .feature-card__icon lottie-player {
  width: 64px;
  height: 64px;
}

@media (max-width: 1100px) {
  .parent-company__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .parent-company {
    padding: 3rem 1.25rem;
  }
  .parent-company__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .parent-company__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About: Vision & Mission ===== */
.vision-mission-section {
  background: #fafafa;
  padding: 5rem 2.5rem;
}

.vm-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-card {
  position: relative;
  overflow: hidden;
  background: var(--primary-blue);
  border-radius: 20px;
  padding: 2.75rem 3rem;
  color: #fff;
}

.vm-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -40px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.vm-card > * {
  position: relative;
  z-index: 1;
}

.vm-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-fira);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vm-card__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

.vm-card__title {
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: var(--fs-32);
  color: #fff;
  margin: 0 0 1.75rem;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.vm-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.vm-mission {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vm-mission__item {
  display: flex;
  gap: 1.5rem;
}

.vm-mission__term {
  flex: 0 0 38%;
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #fff;
}

.vm-mission__arrow {
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.vm-mission__def {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 3rem 1.25rem;
  }
  .vm-card {
    padding: 2rem;
  }
  .vm-mission__item {
    flex-direction: column;
    gap: 0.4rem;
  }
  .vm-mission__term {
    flex: 1 1 auto;
  }
}

/* ===== About: Leadership / Our Team ===== */
.leadership {
  background: #fff;
  padding: 5rem 2.5rem;
}

.leadership__list {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.leader-card {
  display: flex;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.leader-card__photo {
  position: relative;
  flex: 0 0 300px;
}

.leader-card__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leader-card__linkedin {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
}

.leader-card__linkedin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card__body {
  flex: 1;
  padding: 2.5rem 3rem;
}

.leader-card__name {
  font-family: "Faustina", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #111;
  margin: 0 0 0.6rem;
}

.leader-card__role {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.leader-card__role-main {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.leader-card__role-sub {
  color: #6b7785;
  font-size: 0.9rem;
}

.leader-card__role-sub a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.leader-card__rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  margin: 1rem 0 1.25rem;
}

.leader-card__bio {
  font-size: 0.95rem;
  color: #5a6573;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .leadership {
    padding: 3rem 1.25rem;
  }
  .leader-card {
    flex-direction: column;
  }
  .leader-card__photo {
    flex: 0 0 auto;
    height: 280px;
  }
  .leader-card__body {
    padding: 1.75rem;
  }
}

.vivere-container {
    width: 100%;
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/
}
.vivere-container-team{
    padding: 1rem 120px;
}

 .vivere-section-about{
     padding:4rem 120px;
 }
.vivere-header h2 {
    font-family: "Faustina", serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.vivere-header .tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.vivere-header .highlight {
    color: var(--primary-red);
    font-weight: 600;
}

.vivere-intro {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.vivere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vivere-card {
    position: relative;
    /*background: #fff;*/
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; 
}

.about-grid .vivere-card:nth-child(1) {
    grid-column: span 2;
    background-size: cover;
    background-position: center;
}

.about-grid .vivere-card, .bio-about-grid .vivere-card {
    /*border: 1px solid #e2e2e2;*/
}
.about-grid .vivere-card img {
    position: absolute;
    top: 50px;
    right: 40px;
    width: 150px;
    opacity: 0.2;
    z-index: 0;
}

.about-grid .vivere-card:nth-child(1) img {
    top: 0;
    right: 0;
}

.about-grid .vivere-card:nth-child(2) img {
    top: 40px;
    right: -30px;
    width: 200px;
}

.about-grid .vivere-card:nth-child(3) img {
    top: 100px;
    right: -30px;
}

.about-grid .vivere-card:nth-child(4) img {
    top: 200px;
    right: -30px;
}

.about-grid .vivere-card * :not(img) {
    position: relative;
    z-index: 1;
}

.about-grid .vivere-card:nth-child(4){
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.vivere-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px #0f589685;
}

.vivere-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.vivere-card p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

.biophore-section {
    padding: 1rem 120px;
    background: #ffffff; 
}

.biophore-section .vivere-header h2 {
    color:var(--primary-blue) ;
}

 .bio-about-grid .vivere-card img {
    position: absolute;
    top: 50px;
    right: 00px;
    width: 300px;
    opacity: 0.2;
    z-index: 0;
}
.bio-about-grid .vivere-card:nth-child(1) img {
    top: 87px;
    right: -100px;
}

.bio-about-grid .vivere-card:nth-child(2) img {
    top: 80px;
    width: 150px;
    right: -25px;
}

.bio-about-grid .vivere-card:nth-child(3) img {
    top: 40px;
    width: 200px;
    right: -75px;
}
.bio-about-grid .vivere-card:nth-child(4) img {
    top: 115px;
    right: -40px;
    width: 150px;
}
.bio-about-grid .vivere-card:nth-child(5) img {
    top: 140px;
    right: 200px;
    width: 200px;
}

.vivere-swiper {
  padding: 2rem 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0F5896; 
}

.vision-mission, .team {
  padding: 1rem 120px;
  background: #fff;
}

.vision-mission h2, .team h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  background-color:  #0F5896 !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

.vision, .mission {
  /*background: #fff;*/
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision:hover, .mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.vision h3, .mission h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vision h3 {
  color: var(--primary-blue);
}

.mission h3 {
  color: var(--primary-blue);
}

.mission ul {
  list-style: none;
  padding-left: 0;
}

.mission li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.mission li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-green);
}


.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 30px 0px;
  /*background: #f8f8f8;*/
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /*background: #fff;*/
  /*border: 1px solid #ccc;*/
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.team-member img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.team-info {
  flex: 1;
}

.team-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.team-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.linkedin-link img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.linkedin-link:hover img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .vivere-header h2 {
    font-size: 2rem;
    text-align: left;
  }

  .vivere-header .tagline {
    font-size: 1rem;
    text-align: left;
  }

  .vivere-intro {
    font-size: 1rem;
    text-align: left;
  }

  .vivere-grid {
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem;
  }

  .about-grid .vivere-card:nth-child(1) {
    grid-column: span 2; 
  }

  .about-grid .vivere-card:nth-child(4) {
    grid-column: span 2; 
    grid-row: auto;
  }
  .vivere-section-about{
      padding: 4rem 32px 2rem 32px;
  }
   .biophore-section,.vision-mission, .team,.vivere-container-team{
      padding: 2rem 32px;
  }

  .about-grid .vivere-card img {
    width: 200px; 
    top: auto;
    bottom: 20px;
    opacity: 0.15;
  }

  /*.vision-mission, .team {*/
  /*  padding: 3rem 1rem;*/
  /*}*/
}

@media  (min-width:766px){
    .team-member-image{
    width: 200px !important;
      height: 100% !important;
}
}
@media (max-width: 766px) {

  .biophore-section,.vision-mission, .team,.vivere-container-team {
    padding: 0px 32px 40px 32px;
  }
  .vivere-header h2 {
    font-size: 1.8rem;
   
  }
  .biophore-section .vivere-header h2 {
  margin-top: 0; 
}
 
  .vivere-header .tagline {
    font-size: 0.95rem;
  }

  .vivere-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .vivere-grid {
    grid-template-columns: 1fr; 
    gap: 1rem;
  }

  .about-grid .vivere-card:nth-child(1),
  .about-grid .vivere-card:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
  }

  .about-grid .vivere-card img {
    display: none; 
  }

  .vivere-card {
    padding: 1.5rem;
  }

  .vivere-card h3 {
    font-size: 1.1rem;
  }

  .vivere-card p {
    font-size: 0.9rem;
  }
.team-member-image{
    width: 100% !important;
    height: 100% !important;
}

  .team-member {
    flex-direction: column;
    align-items: center;
  }



  
}
