/* About Us Page Styles - Reference Design */

/* Base Styles with Grid Background */
.about-us {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #1f1f1f;
  position: relative;
}

/* Grid Background Pattern - REMOVED */
/* .about-us::before {
/*   content: '';
/*   position: fixed;
/*   top: 0;
/*   left: 0;
/*   right: 0;
/*   bottom: 0;
/*   background-image:
/*     linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
/*     linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
/*   background-size: 20px 20px;
/*   pointer-events: none;
/*   z-index: 0;
/*   -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 70%, transparent 100%);
/*   mask-image: radial-gradient(ellipse 80% 60% at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 70%, transparent 100%);
/* } */

.about-hero {
  background: #ffffff;
  color: #0f172a;
  padding: 0;
  position: relative;
  z-index: 1;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.about-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.about-hero__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  
  text-align: center;
  width: 100%;
}

.about-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__label {
  display: inline-block;
  padding: 8px 24px;
  color: #1F1F1F;
  font-size: clamp(12px, 1.5vw, 14px);
  
  text-transform: uppercase;
  border: 1px solid #1F1F1F;
  border-radius: 20px;
  margin-bottom: 20px;
  
}


.about-hero__title {
  font-size: clamp(2rem, 4vw + 1.5rem, 4rem) !important;
  text-align: center;
  color: #262626;
  margin: 0 !important;
  font-weight: 500;
  padding: 24px 0px 24px 0px;
  line-height: 1.2;
}

.about-hero__subtitle {
  font-size: clamp(1.1rem, 1.5vw + 0.8rem, 1.25rem);
  line-height: 1.6;
  color: #64748b;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Section - Reference Design Style */
.about-team {
  padding: 0px 0px 140px 0px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.about-team__container {
  max-width: 1400px;
  margin: 0 auto;
 
}

.about-team__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
  text-align: center;
}

.about-team__subtitle {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.about-team__member {
  text-align: center;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.about-team__member:hover {
  transform: translateY(-4px);
}

.about-team__member-avatar {
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 280px;
}

/* Individual background colors for each team member */
.about-team__member:nth-child(1) .about-team__member-avatar {
  background: linear-gradient(1deg, #a497ff63, transparent);
}

.about-team__member:nth-child(2) .about-team__member-avatar {
  background: linear-gradient(1deg, #a497ff63, transparent);
}

.about-team__member:nth-child(3) .about-team__member-avatar {
  background: linear-gradient(1deg, #a497ff63, transparent);
}

.about-team__member:nth-child(4) .about-team__member-avatar {
  background: linear-gradient(1deg, #a497ff63, transparent);
}

.about-team__member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.about-team__member:hover .about-team__member-photo {
  transform: scale(1.02);
}

/* Special lighting adjustment for Alexey's photo */
.about-team__member-photo--alexey {
  filter: brightness(1.15) contrast(1.1) saturate(0.9);
}

/* Video controls for team member videos */
.about-team__member-photo {
  cursor: pointer;
}

.about-team__member-photo:hover {
  cursor: pointer;
}

.about-team__member h3 {
  font-size: clamp(18px, 1.2rem + 0.5vw, 24px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
  line-height: 1.2;
  text-align: left;
}

.about-team__member-role {
  font-size: clamp(14px, 0.9rem + 0.3vw, 18px);
  color: #64748b;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: left;
}

.about-team__member p {
  font-size: clamp(13px, 0.8rem + 0.2vw, 14px);
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  text-align: left;
}

/* Responsive Design for Team Section */
@media (max-width: 1024px) {
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .about-team__member-avatar {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .about-team {
    padding: 80px 0;
  }
  
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .about-team__member-avatar {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-team {
    padding: 60px 0;
  }
  
  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-team__member-avatar {
    height: 180px;
  }
  
  .about-team__member h3 {
    font-size: clamp(16px, 1rem + 0.5vw, 20px);
  }
  
  .about-team__member-role {
    font-size: clamp(13px, 0.8rem + 0.3vw, 16px);
  }
  
  .about-team__member p {
    font-size: clamp(12px, 0.75rem + 0.2vw, 14px);
  }
}

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

@media (max-width: 768px) {
  .about-team {
    padding: 80px 0;
  }
  
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .about-team__member {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .about-team {
    padding: 0px;
  }
  
  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-team__member {
    padding: 16px;
  }
  
  .about-team__member h3 {
    font-size: clamp(16px, 1rem + 0.5vw, 20px);
  }
  
  .about-team__member-role {
    font-size: clamp(13px, 0.8rem + 0.3vw, 16px);
  }
  
  .about-team__member p {
    font-size: clamp(12px, 0.75rem + 0.2vw, 14px);
  }
}

/* Pearl Tiles Animation - Fast Speed */
:root {
  --tile: clamp(48px, 4vw, 84px);
  --grid-line: rgba(0,0,0,.08);
  --bg: #fff;
  --pearl-a: #ffd6f1;
  --pearl-b: #d8e7ff;
  --pearl-c: #ffe7f5;
  --shine-opacity: .52;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: 38vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: var(--tile) var(--tile);
  background-position: center;
  pointer-events: none;
  z-index: -1;
  -webkit-mask-image: radial-gradient(80% 100% at 50% 50%, #000 20%, #0008 40%, #0004 60%, #0002 80%, transparent 100%);
  mask-image: radial-gradient(80% 100% at 50% 50%, #000 20%, #0008 40%, #0004 60%, #0002 80%, transparent 100%);
}

.tiles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--tile));
  grid-auto-rows: var(--tile);
  gap: 0;
  place-content: start;
  align-content: start;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0px, 0px);
}

.tiles > span {
  width: var(--tile);
  height: var(--tile);
  position: relative;
  overflow: hidden;
}

.tiles > span.shine::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: var(--shine-opacity);
  background: conic-gradient(
    from .2turn at 30% 40%,
    color-mix(in oklab, var(--pearl-a) 72%, transparent) 0turn,
    color-mix(in oklab, var(--pearl-b) 70%, transparent) .25turn,
    color-mix(in oklab, var(--pearl-c) 70%, transparent) .5turn,
    color-mix(in oklab, var(--pearl-b) 70%, transparent) .75turn,
    color-mix(in oklab, var(--pearl-a) 72%, transparent) 1turn
  );
  mix-blend-mode: screen;
  filter: blur(4px) saturate(1.08);
  will-change: transform, opacity;
  transition: opacity 520ms ease;
  animation: tile-rotate 6s linear infinite, tile-drift 2s ease-in-out infinite alternate;
}

.tiles > span.shine.fadeout::before {
  opacity: 0;
}

@keyframes tile-rotate {
  to {
    transform: rotate(1turn) translate(-2%, -2%);
  }
}

@keyframes tile-drift {
  to {
    transform: translate(-2%, -2%);
  }
}

/* Responsive adjustments for pearl tiles */
@media (max-width: 1024px) {
  :root {
    --tile: clamp(40px, 3.5vw, 70px);
  }
}

@media (max-width: 768px) {
  :root {
    --tile: clamp(32px, 3vw, 60px);
  }
  
  .about-hero {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  :root {
    --tile: clamp(28px, 2.5vw, 50px);
  }
  
  .about-hero {
    min-height: 35vh;
  }
}

/* Performance optimizations */
.pearl-tiles > span {
  contain: layout style paint;
}

.pearl-tiles > span.shine::before {
  contain: layout style paint;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .tiles > span.shine::before {
    animation: none;
    opacity: 0.3;
  }
  
  .tiles > span.shine.fadeout::before {
    transition: opacity 200ms ease;
  }
}

/* Team Descriptions in Hero Section */
.about-hero__team-descriptions {
  margin-top: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__team-descriptions p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 400;
}

.about-hero__team-descriptions strong {
  color: #0f172a;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero__team-descriptions {
    margin-top: 32px;
    text-align: center;
  }
  
  .about-hero__team-descriptions p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero__team-descriptions {
    margin-top: 24px;
  }
  
  .about-hero__team-descriptions p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.mission-section {
  position: relative; 
  overflow: hidden; 
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: #1f1f1f;
}
  
.mission-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mission-bg-svg {
  width: 100%; 
  /* height: 100%;  */
  object-fit: cover; 
  display: block;
}

.mission-container {
  max-width: clamp(280px, 90vw, 1400px); 
  margin: 0 auto; 
  padding: 150px 0; 
  position: relative; 
  z-index: 1;
}

.mission-grid {
  display: grid; 
  grid-template-columns: minmax(0, 1fr) minmax(0, 600px); 
  gap: 24px; 
  align-items: center;
}

.mission-title, .benefits-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin: 24px 0px;
  color: #fff;
}

.mission-text {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: #ffffffbd;
  line-height: 27px;
  padding-right: 15%;
}

.mission-label {
  font-size: clamp(12px, 1.5vw, 14px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 16px;
  color: #ffffff;
}

.video-el {
  border-radius: 16px !important;
}

.benefits-section {
  position: relative; 
  overflow: hidden; 
  background: #1F1F1F;
}

.benefits-section .uc-hero__gradient-left,
.benefits-section .uc-hero__gradient-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

/* Left gradient for benefits section */
.benefits-section .uc-hero__gradient-left::before {
  content: "";
  position: absolute;
  width: clamp(200px, 40vw, 511.6px);
  height: 494.58px;
  right: 14%;
  bottom: 10%;
  border-radius: 50%;
  background: linear-gradient(93deg, #975607 0%, #7056F3 100%);
  opacity: 100;
  z-index: 0;
}

/* Right gradient for benefits section */
.benefits-section .uc-hero__gradient-right::before {
  content: "";
  position: absolute;
  width: clamp(200px, 40vw, 532.57px);
  height: 299.64px;
  right: -4%;
  bottom: 3%;
  border-radius: 50%;
  background: linear-gradient(90deg, #52B3F3 0%, #8856F3 100%);
  opacity: 0.3;
  transform: rotate(-155.84deg);
}

.benefits-bg {
  position: absolute; 
  inset: 0; 
  pointer-events: none;
}

.benefits-bg-svg {
  width: 100%; 
  /* height: 100%;  */
  object-fit: cover; 
  display: block;
}

.benefits-container {
  max-width: clamp(280px, 90vw, 1400px); 
  margin: 0 auto; 
  padding: 150px 0; 
  position: relative; 
  z-index: 1;
}

.benefits-head {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  margin-bottom: 56px;
}

.benefits-label {
  padding: 8px 16px; 
  border-radius: 999px; 
  border: 1px solid rgba(255, 255, 255, .16); 
  color: #fff; 
  font-size: 14px; 
  letter-spacing: .08em; 
  text-transform: uppercase;
}

.benefits-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  border: 1px solid rgba(255, 255, 255, .12);
}

.benefit-card {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  gap: 18px; 
  padding: 48px 28px; 
  color: rgba(255, 255, 255, .86); 
  border-left: 1px solid rgba(255, 255, 255, .12); 
  border-top: 1px solid rgba(255, 255, 255, .12);
}

/* remove first-row/first-col borders for a clean outer frame */
.benefit-card:nth-child(-n+3) {
  border-top: none;
}

.benefit-card:nth-child(3n+1) {
  border-left: none;
}

.icon-tile {
  width: 76px; 
  height: 76px; 
  border-radius: 20px; 
  background: linear-gradient(180deg, #7C5BFF, #5B5BF9); 
  display: grid; 
  place-items: center; 
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s; 
  border: 1px solid rgba(255, 255, 255, .14);
}

.icon-svg {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1); 
  transform-origin: center;
}

.benefit-title {
  margin: 0; 
  font-weight: 700; 
  color: #fff; 
  font-size: 20px;
}

.benefit-desc {
  margin: 0; 
  font-size: 16px; 
  color: rgba(255, 255, 255, .7); 
  max-width: 36ch;
}

/* Hover animations on the whole card */
.benefit-card:hover .icon-tile {
  transform: translateY(-4px) rotate(-2deg);
}

.benefit-card:hover .icon-svg {
  transform: scale(1.1);
}

.icon-svg {
  fill: #fff;
}

.page-template-template-about-us .partners-section {
  padding: 0px;
}

.page-template-template-about-us .partners-marquee {
  height: auto;
}

.page-template-template-about-us .partners-marquee__track, 
.page-template-template-about-us .partners-marquee, 
.page-template-template-about-us .partners-section {
  background: unset;
}

.page-template-template-about-us .partners-fade {
  background: #1f1f1f;
}

.page-template-template-about-us .partners-fade::before {
  left: 0;
  background: linear-gradient(to right, #1f1f1f 0%, rgba(255, 255, 255, 0) 100%);
}

.page-template-template-about-us .partners-fade::after {
  right: 0;
  background: linear-gradient(to left, #1f1f1f 0%, rgba(255, 255, 255, 0) 100%);
}

.page-template-template-about-us .partner-logo_svg {
  filter: unset !important;
  fill: #fff !important;
}

.page-template-template-about-us .partner-logo {
  filter: invert(1);
}

/* FAQ Section - White Background for About Us */
.pricing-faq {
  padding: 150px 0 !important;
  background: #ffffff !important;
  color: #222 !important;
}

.pricing-faq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-faq__title {
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem) !important;
  font-weight: 500 !important;
  text-align: left !important;
  margin-bottom: 60px !important;
  color: #222 !important;
  line-height: 1.3 !important;
}

.pricing-faq__items {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.pricing-faq__item {
  border-bottom: 1px solid #e5e5e5 !important;
  padding: 44px 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.pricing-faq__item:last-child {
  border-bottom: none !important;
}

.pricing-faq__item:hover .pricing-faq__question {
  color: #8272fe !important;
}

.pricing-faq__item:hover .pricing-faq__question span {
  color: #8272fe !important;
}

.pricing-faq__item:hover .pricing-faq__chevron {
  transform: translateY(2px) !important;
  color: #8272fe !important;
}

.pricing-faq__item.active:hover .pricing-faq__chevron {
  transform: rotate(180deg) translateY(2px) !important;
}

.pricing-faq__question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.pricing-faq__question span {
  font-size: clamp(1rem, 0.8rem + 0.6vw, 1.125rem) !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  color: #222 !important;
}

.pricing-faq__chevron {
  color: #666 !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.pricing-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}

.pricing-faq__answer p {
  margin: 0 !important;
  color: #666 !important;
  line-height: 1.6 !important;
  font-size: 1rem !important;
}

.pricing-faq__item.active .pricing-faq__answer {
  max-height: 200px;
  padding: 24px 0 0 0;
}

.pricing-faq__item.active .pricing-faq__chevron {
  transform: rotate(180deg) !important;
  color: #8272fe !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

/* CTA Section - Black Background for About Us */
.pricing-cta {
  padding: 100px 0 !important;
  background: #000 !important;
  background-image: url('../img/uc-cta-bg.svg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: #fff !important;
  position: relative !important;
  overflow: hidden !important;
}

.pricing-cta::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.3) !important;
  z-index: 1 !important;
}

.pricing-cta__container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.pricing-cta__title {
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem) !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
  color: #fff !important;
}

.pricing-cta__subtitle {
  font-size: 1.25rem !important;
  color: #b0b0b0 !important;
  margin-bottom: 40px !important;
  line-height: 1.6 !important;
}

.pricing-cta__buttons {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.pricing-cta__btn {
  display: inline-block !important;
  padding: 18px 24px !important;
  border-radius: 32px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  min-width: 180px !important;
}

.pricing-cta__btn--primary {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.pricing-cta__btn--primary:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
}

.pricing-cta__btn--secondary {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff !important;
}

.pricing-cta__btn--secondary:hover {
  background: #f0f0f0 !important;
  color: #000 !important;
  transform: translateY(-2px) !important;
}

/* Mobile Responsive for FAQ and CTA */
@media (max-width: 768px) {
  .pricing-faq {
    padding: 80px 0 !important;
  }
  
  .pricing-faq__title {
    text-align: center !important;
    margin-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .pricing-faq__container,
  .pricing-cta__container {
    padding: 0 16px !important;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .about-hero {
    min-height: 50vh;
    padding: 40px 0;
  }
  
  .about-hero__container {
    padding: 0 16px;
  }
  
  .about-hero__title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.5rem) !important;
    padding: 16px 0px 16px 0px;
  }
  
  .about-hero__subtitle {
    font-size: clamp(0.9rem, 2vw + 0.8rem, 1.1rem);
    margin-bottom: 20px;
  }

  /* Team Section Mobile */
  .about-team__container {
    padding: 0px;
  }
  
  .about-team__grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .about-team__member {
    text-align: center;
    padding: 0px;
  }
  
  .about-team__member-avatar {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }
  
  .about-team__member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-team__member h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  
  .about-team__member-role {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .about-team__member p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Mission Section Mobile */
  .mission-section {
    padding: 60px 0 !important;
  }
  
  .mission-section__container {
    padding: 0 16px;
  }
  
  .mission-section__title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.2rem) !important;
    margin-bottom: 20px !important;
  }
  
  .mission-section__subtitle {
    font-size: clamp(0.9rem, 2vw + 0.8rem, 1.1rem) !important;
    margin-bottom: 30px !important;
  }
  
  .mission-section__grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .mission-section__card {
    padding: 20px !important;
  }
  
  .mission-section__card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
  }
  
  .mission-section__card p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  /* Partners Section Mobile */
  .partners-section {
    padding: 60px 0 !important;
  }
  
  .partners-section__container {
    padding: 0 16px;
  }
  
  .partners-section__title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.2rem) !important;
    margin-bottom: 20px !important;
  }
  
  .partners-section__subtitle {
    font-size: clamp(0.9rem, 2vw + 0.8rem, 1.1rem) !important;
    margin-bottom: 30px !important;
  }
  
  .partners-section__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  .partners-section__item {
    padding: 15px !important;
  }
  
  .partners-section__item h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }
  
  .partners-section__item p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  /* Benefits Section Mobile */
  .benefits-section {
    padding: 0px !important;
  }
  
  .benefits-section__container {
    padding: 0 16px;
  }
  
  .benefits-section__title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.2rem) !important;
    margin-bottom: 20px !important;
  }
  
  .benefits-section__subtitle {
    font-size: clamp(0.9rem, 2vw + 0.8rem, 1.1rem) !important;
    margin-bottom: 30px !important;
  }
  
  .benefits-section__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .benefit-card {
    padding: 20px !important;
  }
  
  .benefit-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
  }
  
  .benefit-card p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  /* FAQ Section Mobile */
  .pricing-faq {
    padding: 60px 0 !important;
  }
  
  .pricing-faq__container {
    padding: 0 16px;
  }
  
  .pricing-faq__title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.2rem) !important;
    margin-bottom: 30px !important;
  }
  
  .pricing-faq__item {
    padding: 24px 0 !important;
  }
  
  .pricing-faq__question span {
    font-size: clamp(0.9rem, 2vw + 0.8rem, 1.1rem) !important;
    line-height: 1.4 !important;
  }
  
  .pricing-faq__answer p {
    margin: 0 !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
  }

  .pricing-faq__item.active .pricing-faq__answer {
    max-height: 200px;
    padding: 24px 0 0 0;
  }

  .pricing-faq__item.active .pricing-faq__chevron {
    transform: rotate(180deg) !important;
    color: #8272fe !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
  }

  /* CTA Section Mobile */
  .pricing-cta {
    padding: 60px 0 !important;
  }
  
  .pricing-cta__container {
    padding: 0 16px;
  }
  
  .pricing-cta__title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.2rem) !important;
    margin-bottom: 16px !important;
  }
  
  .pricing-cta__subtitle {
    font-size: clamp(0.9rem, 2vw + 0.8rem, 1.1rem) !important;
    margin-bottom: 30px !important;
  }
  
  .pricing-cta__buttons {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .pricing-cta__btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }
  
  .mission-grid {
    grid-template-columns: 1fr !important;
  }
  
  .mission-container {
    padding: 40px 0;
  }
  
  .video-el {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .mission-bg-svg {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  .mission-text {
    padding-right: 0px;
  }
  
  .about-team {
    padding: 0px 0px 80px 0px;
  }
  
  .partners-section {
    padding: 0px !important;
  }
  
  .benefits-container {
    padding: 80px 0 !important;
  }
  .benefits-grid{
    grid-template-columns: 1fr !important;
  }
  
}

/* Tablet Styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-hero__container,
  .about-team__container,
  .mission-section__container,
  .partners-section__container,
  .benefits-section__container,
  .pricing-faq__container,
  .pricing-cta__container {
    padding: 0 32px;
  }
  
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }
  
  .mission-section__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }
  
  .partners-section__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
  }
  
  .benefits-section__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

/* Large Desktop Styles (1025px and up) */
@media (min-width: 1025px) {
  .about-hero__container,
  .about-team__container,
  .mission-section__container,
  .partners-section__container,
  .benefits-section__container,
  .pricing-faq__container,
  .pricing-cta__container {
    padding: 0 24px;
  }
}
