/* ===============================
   ABOUT PAGE STYLES
================================= */

.about-intro { 
  text-align: center; 
  padding-top: clamp(40px, 8vw, 120px); 
}

.about-intro__title { 
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.about-intro__pretitle {
  margin: 24px auto 38px;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  text-align: center;
  color: #d8d8d8
}


/* ===============================
   ABOUT TEAM STYLES
================================= */
.about-team { 
  padding: clamp(40px, 6vw, 90px) 0; 
}

.about-team .container { 
  max-width: 1400px;
   margin: 0 auto; 
   padding: 0 clamp(16px, 3vw, 32px); 
  }

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

@media (max-width: 1024px) {
  .about-team__grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}

@media (max-width: 640px) {
  .about-team__grid { grid-template-columns: 1fr; }
}

.team-card {
  position: relative;
  background:
    radial-gradient(900px 520px at 0% 0%, rgba(255, 193, 37, 0.12), rgba(255, 193, 37, 0) 55%),
    radial-gradient(900px 520px at 100% 100%, rgba(255, 193, 37, 0.08), rgba(255, 193, 37, 0) 55%),
    rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(255, 193, 37, 0.55);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.42);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: clamp(120px, 14vw, 170px) minmax(0, 1fr);
  column-gap: clamp(16px, 2.4vw, 30px);
  row-gap: 12px;
  align-items: start;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 193, 37, 0.14), rgba(255, 193, 37, 0) 40%);
  opacity: 0.55;
}

.team-card::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  background: linear-gradient(to bottom, rgba(255, 193, 37, 1), rgba(255, 193, 37, 0.25));
  border-radius: 0 8px 8px 0;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 37, 0.9);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
}

.team-card__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 14px 14px 32px 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(255, 193, 37, 0.65);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  grid-column: 1;
  grid-row: 1 / span 3;
  position: relative;
  z-index: 1;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transform: scale(1.04);
  filter: grayscale(75%) contrast(1.05) brightness(0.92);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.1);
  filter: grayscale(10%) contrast(1.05) brightness(0.98);
}

.team-card__name {
  text-align: left;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFC125;
  margin: 2px 0 4px;
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
}


.team-card__desc {
  color: #d8d8d8;
  line-height: 1.7;
  margin: 0;
  max-width: none;
  padding: 0;
  text-align: left;
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 1;
}

.team-card__footer { 
  padding: 0;
  text-align: left;
  grid-column: 2;
  grid-row: 3;
  position: relative;
  z-index: 1;
}

.team-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #FFC125;
  border: 2px solid rgba(255, 193, 37, 0.65);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1), background-color 260ms cubic-bezier(0.16, 1, 0.3, 1), color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card__btn::after {
  content: "→";
  display: inline-block;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card__btn:hover { 
  transform: translateY(-2px);
  border-color: rgba(255, 193, 37, 1);
  background: rgba(255, 193, 37, 0.12);
  box-shadow: 0 14px 30px rgba(0,0,0,0.42);
}

.team-card__btn:hover::after {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .team-card {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .team-card::after {
    top: 0;
    bottom: auto;
    left: 18px;
    right: 18px;
    width: auto;
    height: 3px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(to right, rgba(255, 193, 37, 1), rgba(255, 193, 37, 0.25));
  }
  .team-card__photo {
    max-width: clamp(220px, 60vw, 320px);
    grid-column: 1;
    grid-row: 1;
  }
  .team-card__name,
  .team-card__desc,
  .team-card__footer {
    grid-column: 1;
  }
  .team-card__name {
    margin-top: 6px;
    text-align: left;
  }
}

/* ===============================
   ABOUT CHOOSE STYLES
================================= */

.about-choose { 
  padding: clamp(40px, 6vw, 90px) 0; 
}

.about-choose .container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 clamp(16px, 3vw, 32px); 
}

.about-choose__header { 
  text-align: left; 
  margin-bottom: clamp(18px, 3vw, 32px); 
}

.about-choose__title {
  font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #FFC125;
  margin: 0 0 clamp(8px, 1.6vw, 14px);
}

.about-choose__pretitle {
  max-width: 680px;
  margin: 0;
  color: #dcdcdc;
  line-height: 1.35; 
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); 
  font-weight: 600; 
}


.about-choose__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

@media (max-width: 980px) {
  .about-choose__items { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 640px) {
  .about-choose__items { grid-template-columns: 1fr; }
}

.choose-item {
  background: #111111;
  border: 2px solid #FFC125;
  border-radius: 12px;
  padding: clamp(14px, 2.2vw, 20px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}



.choose-item__icon img { 
  width: 56px; 
  height: 56px; 
  object-fit: cover; 
  border-radius: 8px; 
}

.choose-item__title {
  margin: clamp(8px, 1.4vw, 12px) 0 6px;
  font-weight: 700;
  color: #fff;
}

.choose-item__text { 
  color: #d8d8d8; 
  line-height: 1.6; 
}

/* ===============================
   ABOUT TESTIMONIALS STYLES
================================= */

.about-testimonials { 
  padding: clamp(40px, 6vw, 90px) 0; 
}

.about-testimonials .container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 clamp(16px, 3vw, 32px); 
}

.about-testimonials__header { 
  text-align: left;
   margin-bottom: clamp(18px, 3vw, 36px); 
}

.about-testimonials__title {
  font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #FFC125;
  margin: 0 0 clamp(8px, 1.6vw, 14px);
}

.about-testimonials__subtitle {
  max-width: 800px;
  margin: 0;
  color: #dcdcdc;
  line-height: 1.35;
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600; 
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

@media (max-width: 980px) {
  .testimonials__grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}

@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: #111111;
  border-radius: 12px;
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card__header { 
  display: flex;
  align-items: center; 
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.testimonial-card__avatar { 
  width: 42px; 
  height: 42px; 
  border-radius: 50%; 
  overflow: hidden; 
  background: #222; 
  display: grid; 
  place-items: center;
 }

.testimonial-card__avatar img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 50%; 
}

.avatar-placeholder { 
  width: 60%; 
  height: 60%; 
  border-radius: 50%; 
  background: #444; 
}

.testimonial-card__name { 
  font-weight: 700; 
  color: #fff; 
  font-size: 0.95rem; 
  letter-spacing: .02em; 
}

.testimonial-card__rating { 
  color: #FFC125; 
  font-size: 0.9rem; 
}

.testimonial-card__rating .star { 
  display: inline-block; 
  margin-right: 3px; 
  line-height: 1; 
}

.testimonial-card__rating .star:last-child { 
  margin-right: 0; 
}

.testimonial-card__rating .star--full { 
  color: #FFC125; 
}

.testimonial-card__rating .star--empty { 
  color: rgba(255,193,37,0.28); 
}

.testimonial-card__rating .star--muted { 
  color: rgba(255,193,37,0.28); 
}

.testimonial-card__text { 
  color: #d8d8d8; 
  line-height: 1.6; 
  margin-top: clamp(10px, 1.6vw, 14px); 
}

.testimonial-card__accent { 
  height: 3px; 
  background: #FFC125; 
  width: clamp(120px, 22vw, 240px); 
  margin-top: clamp(12px, 1.8vw, 16px); 
}
