/* ── About hero ── */
.about-hero {
  padding: 80px var(--site-padding) 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-hero__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 24px;
}

.about-hero__label strong {
  font-weight: 800;
  color: #0d1b2e;
}

.about-hero__title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #0d1b2e;
  line-height: 1.12;
  margin-bottom: 24px;
}

.about-hero__title--grad {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__desc {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  max-width: 480px;
}

/* Stats grid */
.about-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.about-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-hero__num {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-hero__stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0d1b2e;
}

@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── About features ── */
.about-features {
  padding: 80px var(--site-padding) 140px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-radius: 0 0 15% 15%;
}

.about-features__img-col {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.about-features__blob {
  position: absolute;
  width: 540px;
  height: 500px;
  background: #dcddf0;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  z-index: 0;
}

.about-features__img {
  position: relative;
  z-index: 1;
  max-height: 560px;
  width: 100%;
  object-fit: contain;
}

.about-features__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 20px;
}

.about-features__label strong {
  font-weight: 800;
  color: #0d1b2e;
}

.about-features__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #0d1b2e;
  line-height: 1.12;
  margin-bottom: 36px;
}

.about-features__title--grad {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Accordion ── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion__item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
}

.accordion__header {
  width: 100%;
  display: block;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2e;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.accordion__item:not(.accordion__item--open) .accordion__header:hover {
  background: linear-gradient(to right, rgba(91,196,245,0.15), rgba(123,92,245,0.15));
  color: #0d1b2e;
}

.accordion__item--open .accordion__header {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  color: #fff;
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  background: #fff;
}

.accordion__body-inner {
  overflow: hidden;
  padding: 0 22px;
}

.accordion__body-inner p {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  padding: 16px 0 20px;
}

.accordion__item--open .accordion__body {
  grid-template-rows: 1fr;
}

@media (max-width: 1024px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-features__img-col {
    position: static;
    min-height: auto;
    height: 340px;
  }

  .about-features__img {
    height: 100%;
  }

  .about-features__blob {
    width: 280px;
    height: 280px;
  }
}

/* ── Testimonial + Partners ── */
.about-testimonial {
  padding: 100px var(--site-padding);
  background: #fff;
}

.about-testimonial__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #0d1b2e;
  text-align: center;
  margin-bottom: 72px;
}

.about-testimonial__hearts {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-testimonial__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

/* Media col */
.about-testimonial__media {
  display: flex;
  align-items: center;
}

.about-testimonial__blob {
  position: absolute;
  width: 230px;
  height: 230px;
  background: #C9A882;
  border-radius: 62% 38% 55% 45% / 55% 60% 40% 50%;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.about-testimonial__avatar {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.about-testimonial__dots {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: 0;
  right: 20px;
  z-index: 0;
  background-image: radial-gradient(circle, #5BC4F5 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.7;
}

/* Quote */
.about-testimonial__quote {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: #0d1b2e;
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: normal;
}

.about-testimonial__name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0d1b2e;
  margin-bottom: 4px;
}

.about-testimonial__role {
  font-size: 14px;
  color: #aaa;
}

/* Partners */
.about-partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.about-partners__logo {
  height: 48px;
  width: 120px;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: filter 0.3s, opacity 0.3s;
}

.about-partners__logo:hover {
  filter: grayscale(100%) opacity(0.5);
}

@media (max-width: 1024px) {
  .about-testimonial__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-partners {
    justify-content: center;
  }
}

/* ── About help ── */
.about-help {
  padding: 100px var(--site-padding);
  background: #F8F8F8;
}

.about-help__header {
  text-align: center;
  margin-bottom: 64px;
}

.about-help__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
  margin-bottom: 16px;
}

.about-help__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #0d1b2e;
}

.about-help__title--grad {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-help__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-help__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.about-help__feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-help__icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(71%) sepia(57%) saturate(600%) hue-rotate(163deg) brightness(102%) contrast(95%);
}

.about-help__feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b2e;
}

.about-help__feature-desc {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
}

.about-help__img-col {
  display: flex;
  justify-content: center;
}

.about-help__img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .about-help__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-help__features {
    grid-template-columns: 1fr;
  }
}

/* ── About CTA ── */
.about-cta {
  padding: 100px var(--site-padding);
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.about-cta__sub {
  font-size: 17px;
  font-weight: 600;
  color: #0d1b2e;
}

.about-cta__sub--grad {
  color: #5BC4F5;
  -webkit-text-fill-color: #5BC4F5;
}

.about-cta__title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  color: #0d1b2e;
  max-width: 860px;
  line-height: 1.15;
}

/* Decorative elements */
.about-cta__deco {
  position: absolute;
  pointer-events: none;
}

.about-cta__deco--circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 5px solid #C9A882;
  top: 22%;
  left: 9%;
  opacity: 0.8;
}

.about-cta__deco--lines {
  bottom: 24%;
  left: 8%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-cta__deco--lines::before,
.about-cta__deco--lines::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 4px;
}

.about-cta__deco--lines::before {
  width: 72px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
}

.about-cta__deco--lines::after {
  width: 48px;
  background: linear-gradient(to right, #7B5CF5, #C084FC);
}

.about-cta__deco--arc {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: #5BC4F5;
  border-right-color: #09132e;
  top: 20%;
  right: 7%;
  transform: rotate(10deg);
}
