.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}

.btn--lg{
  padding: 14px 18px;
}

.btn--full{
  width: 100%;
}

.btn--primary{
  color: #fff;
  margin: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 36px rgba(91,61,245,0.24);
}

.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(91,61,245,0.34);
}

.btn--ghost{
  color: rgba(15,18,34,0.86);
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
}

.btn--ghost:hover{
  border-color: rgba(91,61,245,0.40);
  color: rgba(91,61,245,0.95);
}

/* Headings */
.h2{
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 1000;
  margin-bottom: 10px;
}

.h2--sm{
  font-size: 22px;
  margin-bottom: 8px;
}

.h3{
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.sub{
  color: rgba(15,18,34,0.62);
  font-size: 16px;
}


.footnote{
  text-align: left;
  padding-left: 10%;
}


/* Trust */
.trust{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

.trust__card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,18,34,0.10);
  border-radius: 18px;
  padding: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.trust__k{
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,18,34,0.56);
  margin-bottom: 4px;
}

.trust__v{
  font-weight: 950;
  letter-spacing: -0.02em;
}

/* Micro */
.micro{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin-top: 14px;
  color: rgba(15,18,34,0.62);
  font-size: 13.5px;
}

.micro__icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(91,61,245,0.10);
  border: 1px solid rgba(91,61,245,0.18);
  color: rgba(91,61,245,0.95);
  font-weight: 900;
  flex: 0 0 auto;
}

/* Panel */
.panel{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,18,34,0.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.panel__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel__title{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.panel__tag{
  font-size: 12px;
  font-weight: 950;
  color: rgba(91,61,245,0.95);
  background: rgba(91,61,245,0.10);
  border: 1px solid rgba(91,61,245,0.18);
  padding: 6px 10px;
  border-radius: 999px;
}

.panel__cta{
  display:grid;
  gap: 10px;
}

.panel__fine{
  margin-top: 10px;
  color: rgba(15,18,34,0.55);
  font-size: 12.5px;
  text-align: center;
}

/* Steps */
.steps{
  list-style: none;
  display:grid;
  gap: 10px;
  margin-bottom: 14px;
}

.steps__item{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(15,18,34,0.10);
  background: rgba(15,18,34,0.02);
}

.steps__n{
  height: 36px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  font-size: 12px;
  color: rgba(91,61,245,0.95);
  background: rgba(91,61,245,0.10);
  border: 1px solid rgba(91,61,245,0.18);
}

.steps__t strong{
  display:block;
  font-weight: 1000;
  margin-bottom: 2px;
}

.steps__t span{
  display:block;
  color: rgba(15,18,34,0.62);
  font-size: 16px;
  line-height: 1.4;
}

/* Scroll hint */
.scrollHint{
  margin-top: 18px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(15,18,34,0.10);
  text-decoration: none;
  font-weight: 950;
  font-size: 12px;
  color: rgba(15,18,34,0.55);
  backdrop-filter: blur(12px);
  transition: var(--t);
}

.scrollHint:hover{
  border-color: rgba(91,61,245,0.28);
  color: rgba(91,61,245,0.95);
}

.scrollHint__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(91,61,245,0.95);
  box-shadow: 0 12px 18px rgba(91,61,245,0.20);
}

/* Cards */
.cards_home{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.cards{
  display:grid;
  gap: 18px;
  align-items: stretch;
}

.card{
  height: 100%;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,18,34,0.10);
  background: #fff;
  transition: var(--t);
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.card__link{
  display:flex;
  flex-direction: column;
  height: 100%;
  text-decoration:none;
  color: inherit;
}

.card__media{
  position: relative;
  height: 190px;
  overflow:hidden;
}

.card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: var(--t);
}

.card:hover .card__media img{
  transform: scale(1.08);
}

.card__media{
    height: 280px;
}

.card__body{
  display:flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.price-tag{
  display: flex;
  justify-content: flex-end;
  align-items: center;

  width: calc(100% + 18px);
  margin: 18px -18px 12px auto;
  padding: 12px 18px 12px 16px;

  background: linear-gradient(135deg, rgba(91,61,245,0.08), rgba(122,92,255,0.14));
  border: 1px solid rgba(91,61,245,0.14);
  border-right: 0;

  border-radius: 16px 0 0 16px;

  color: rgba(45,30,120,0.92);
  text-align: right;

  box-shadow: 0 12px 28px rgba(91,61,245,0.08);
  min-height: 64px;
}

.price-tag strong{
  display: block;
  max-width: 190px;

  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  color: rgba(70,45,210,0.98);
}

.card__p{
  margin-top: 8px;
  color: rgba(15,18,34,0.62);
  font-size: 14.5px;
}

.card__more{
  margin-top: auto;
  padding-top: 18px;

  display:inline-flex;
  align-items:center;

  font-weight: 1000;
  color: rgba(91,61,245,0.95);
}

.processFlow{
  display: grid;
  grid-template-columns:
    minmax(240px,1fr) 40px
    minmax(240px,1fr) 40px
    minmax(240px,1fr) 40px
    minmax(240px,1fr) 40px
    minmax(240px,1fr);

  align-items: center;

  gap: 0;

  margin-top: 40px;
}

.processCard{
  height: 100%;
}

.processCard .card__body{
  height: 100%;
  padding: 26px;
}

.processCard__n{
  width: 42px;
  height: 42px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  font-size: 13px;
  font-weight: 1000;

  color: rgba(91,61,245,0.95);

  background: rgba(91,61,245,0.10);
  border: 1px solid rgba(91,61,245,0.18);
}

.processArrow{
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  font-weight: 300;

  color: rgba(91,61,245,0.45);
}

/* Tablet */
@media (max-width: 1300px){

  .processFlow{
    grid-template-columns:
      repeat(5, minmax(220px,1fr));

    gap: 18px;
  }

  .processArrow{
    display: none;
  }
}

/* Mobile */
@media (max-width: 760px){

  .processFlow{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .processCard{
    position: relative;
  }

  .processCard::after{
    content: "↓";

    position: absolute;
    left: 50%;
    bottom: -18px;

    transform: translateX(-50%);

    color: rgba(91,61,245,0.45);

    font-size: 28px;
  }

  .processCard:last-child::after{
    display: none;
  }
}

.processFlow{
  width: 100%;
  justify-content: center;
}

/* List */
.list{
  margin-top: 14px;
  padding-left: 18px;
  color: rgba(15,18,34,0.78);
  font-weight: 650;
}

.list_simple{
  margin-top: 14px;
  padding-left: 18px;
  color: rgba(15,18,34,0.78);
}

.list_simple li{
  margin: 8px 0;
}

.list li{
  margin: 8px 0;
}

/* FAQ */
.faq{
  display:grid;
  gap: 10px;
  max-width: 920px;
}

.faq__item{
  border-radius: 18px;
  border: 1px solid rgba(15,18,34,0.10);
  background: #fff;
  padding: 12px 14px;
}

.faq__q{
  cursor:pointer;
  font-weight: 1000;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq__q::-webkit-details-marker{
  display:none;
}

.faq__a{
  margin-top: 10px;
  color: rgba(15,18,34,0.62);
}

/* Legal */
.legal{
  border: 1px solid rgba(15,18,34,0.10);
  border-radius: 22px;
  background: #fff;
  padding: 18px;
}

.legal__p{
  color: rgba(15,18,34,0.62);
}


/* WhatsApp */
.wa{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  text-decoration:none;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: var(--t);
}

.wa__icon{
  width: 26px;
  height: 26px;
  display: block;
}

.wa:hover{
  transform: translateY(-3px);
}

.wa__dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
}

@media (min-width: 720px){
  .trust{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 760px){
  .cards_home{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (min-width: 760px){
  .cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1120px){
  .cards{
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .card__media{
    height: 180px;
  }

  .wa{
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
  }
}

.serviceOffer{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;

  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,18,34,0.08);
  border-radius: 34px;
  overflow: hidden;

  box-shadow: 0 24px 80px rgba(15,18,34,0.08);
}

.serviceOffer__media{
  position: relative;
  min-height: 100%;
}

.serviceOffer__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.serviceOffer__media::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.02),
      rgba(0,0,0,0.16)
    );
}

.surrogacyBundleSection .serviceOffer{
  display: flex;
  flex-direction: column;

  gap: 0;

  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,18,34,0.08);
  border-radius: 34px;
  overflow: hidden;

  box-shadow: 0 24px 80px rgba(15,18,34,0.08);

  height: fit-content;
}

.surrogacyBundleSection .serviceOffer__media{
  position: relative;

  height: 240px;
  overflow: hidden;
}

.surrogacyBundleSection .serviceOffer__media img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: right top;
}

.surrogacyBundleSection .serviceOffer__content{
  padding: 30px 34px 34px;

  display: flex;
  flex-direction: column;
}

.serviceOffer__priceTag{
  position: absolute;

  top: 22px;
  right: 0;

  padding: 10px 18px 10px 16px;

  border-radius: 14px 0 0 14px;

  background:
    rgba(255,255,255,0.88);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(91,61,245,0.12);
  border-right: none;

  color: rgba(91,61,245,0.96);

  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;

  box-shadow:
    0 10px 30px rgba(15,18,34,0.10);
}

.serviceOffer__content{
  padding: 42px 42px 38px;
  display: flex;
  flex-direction: column;
}

.serviceOffer__label{
  display: inline-flex;
  align-items: center;

  width: fit-content;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(91,61,245,0.08);
  border: 1px solid rgba(91,61,245,0.14);

  color: rgba(91,61,245,0.95);

  font-size: 12px;
  font-weight: 900;

  margin-bottom: 18px;
}

.serviceOffer__title{
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 1000;

  margin-bottom: 18px;
}

.serviceOffer__price{
  font-size: 28px;
  font-weight: 1000;

  color: rgba(91,61,245,0.96);

  margin-bottom: 18px;
}

.serviceOffer__lead{
  font-size: 16px;
  line-height: 1.7;

  color: rgba(15,18,34,0.72);

  margin-bottom: 30px;
}

.serviceOffer__subtitle{
  font-size: 18px;
  font-weight: 950;

  margin-bottom: 18px;
}

.serviceOffer__list{
  display: grid;
  gap: 14px;

  padding-left: 18px;

  color: rgba(15,18,34,0.82);
}

.serviceOffer__list li{
  line-height: 1.55;
}

.serviceOffer__bottom{
  margin-top: auto;
  padding-top: 34px;
}

.serviceOffer__note{
  color: rgba(15,18,34,0.56);
  font-size: 14px;

  margin-bottom: 22px;
}

.serviceOffer__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px){

  .serviceOffer{
    grid-template-columns: 1fr;
  }

  .serviceOffer__media{
    height: 320px;
  }

  .serviceOffer__content{
    padding: 30px;
  }

  .serviceOffer__title{
    font-size: 34px;
  }
}

@media (max-width: 520px){

  .serviceOffer__content{
    padding: 24px;
  }

  .serviceOffer__title{
    font-size: 30px;
  }

  .serviceOffer__price{
    font-size: 24px;
  }

  .serviceOffer__actions{
    flex-direction: column;
  }

  .serviceOffer__actions .btn{
    width: 100%;
  }
}


.surrogacyBundleSection .serviceBundle{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 64px minmax(320px, 0.72fr);
  align-items: center;
  gap: 22px;
}

.surrogacyBundleSection .serviceBundle__plus{
  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  font-weight: 300;

  color: rgba(91,61,245,0.92);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(91,61,245,0.14);
  box-shadow: 0 18px 40px rgba(91,61,245,0.10);
  backdrop-filter: blur(16px);
}

.surrogacyBundleSection .serviceBundle .serviceOffer__content{
  padding: 30px 34px 34px;
}

.surrogacyBundleSection .serviceBundle .serviceOffer__title{
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.surrogacyBundleSection .serviceBundle .serviceOffer__subtitle{
  margin-bottom: 12px;
}

.surrogacyBundleSection .serviceBundle .serviceOffer__list{
  gap: 9px;
}

.surrogacyBundleSection .serviceBundle .serviceOffer__list li{
  line-height: 1.42;
}

.surrogacyBundleSection .serviceBundle .serviceOffer__bottom{
  padding-top: 22px;
}

.surrogacyBundleSection .serviceBundle .serviceOffer__note{
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.45;
}

.surrogacyBundleSection .serviceMini{
  padding: 28px;
  border-radius: 32px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.82),
      rgba(255,255,255,0.72)
    );

  border: 1px solid rgba(15,18,34,0.08);
  box-shadow: 0 24px 70px rgba(15,18,34,0.06);
  backdrop-filter: blur(18px);
}

.surrogacyBundleSection .serviceMini__tag{
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;

  background: rgba(91,61,245,0.10);
  border: 1px solid rgba(91,61,245,0.16);
  color: rgba(91,61,245,0.96);

  font-size: 12px;
  font-weight: 900;
}

.surrogacyBundleSection .serviceMini__title{
  font-size: 28px;
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.surrogacyBundleSection .serviceMini__lead{
  color: rgba(15,18,34,0.66);
  line-height: 1.55;
  margin-bottom: 18px;
}



.surrogacyBundleSection .serviceMini__price{
  display: flex;
  align-items: center;

  width: fit-content;

  padding: 8px 16px 8px 14px;

  margin-left: auto;
  margin-right: -28px;

  border-radius: 14px 0 0 14px;

  background: rgba(91,61,245,0.08);

  border: 1px solid rgba(91,61,245,0.14);
  border-right: none;

  color: rgba(91,61,245,0.96);

  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;

  box-shadow:
    0 8px 20px rgba(91,61,245,0.08);
}

.surrogacyBundleSection .serviceMini__sub{
  font-size: 14px;
  font-weight: 900;
  color: rgba(15,18,34,0.58);
  margin-bottom: 12px;
}

.surrogacyBundleSection .serviceMini__list{
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin-bottom: 22px;
  color: rgba(15,18,34,0.82);
}

.surrogacyBundleSection .serviceMini__list li{
  line-height: 1.42;
}

@media (max-width: 1200px){
  .surrogacyBundleSection .serviceBundle{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .surrogacyBundleSection .serviceBundle__plus{
    margin: -6px auto;
  }
}

@media (max-width: 520px){
  .surrogacyBundleSection .serviceBundle .serviceOffer__media{
    height: 220px;
  }

  .surrogacyBundleSection .serviceBundle .serviceOffer__content{
    padding: 24px;
  }

  .surrogacyBundleSection .serviceBundle .serviceOffer__title{
    font-size: 30px;
  }

  .surrogacyBundleSection .serviceMini{
    padding: 24px;
  }

  .surrogacyBundleSection .serviceMini__title{
    font-size: 28px;
  }
}

.processFlow--four{
  grid-template-columns:
    minmax(240px,1fr) 40px
    minmax(240px,1fr) 40px
    minmax(240px,1fr) 40px
    minmax(240px,1fr);
}

@media (max-width: 1300px){
  .processFlow--four{
    grid-template-columns: repeat(4, minmax(220px,1fr));
    gap: 18px;
  }
}

@media (max-width: 900px){
  .processFlow--four{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.clarification{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 0 18px;

  border-left: 3px solid rgba(91,61,245,0.35);
}

.clarification__title{
  font-size: 18px;
  line-height: 1.2;
  font-weight: 1000;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.clarification p{
  max-width: 760px;
  color: rgba(15,18,34,0.62);
  font-size: 14.5px;
  line-height: 1.65;
}

.medicalTabs{
  display: flex;
  gap: 12px;

  justify-content: center;

  margin-bottom: 34px;

  flex-wrap: wrap;
}

.medicalTabs__btn{
  border: none;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,0.72);

  border: 1px solid rgba(15,18,34,0.08);

  color: rgba(15,18,34,0.72);

  font-size: 14px;
  font-weight: 900;

  cursor: pointer;

  transition: var(--t);
}

.medicalTabs__btn:hover{
  border-color: rgba(91,61,245,0.24);
}

.medicalTabs__btn.is-active{
  background: rgba(91,61,245,0.10);

  border-color: rgba(91,61,245,0.18);

  color: rgba(91,61,245,0.96);
}

.medicalSlider{
  position: relative;
}

.medicalSlide{
  display: none;
}

.medicalSlide.is-active{
  display: block;
}


.biologicalSection{
  display: flex;
  flex-direction: column;
}


.biologicalTop{
  max-width: 980px;
  margin-bottom: 30px;
  text-align: center;
}

.biologicalLead{
  margin-top: 14px;
  max-width: 920px;
}

.biologicalGrid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 42px;
  align-items: center;
}

.bioPoints{
  display: grid;
  gap: 14px;
}

.bioPoint{
  padding: 18px 20px;

  border-radius: 22px;

  background: rgba(255,255,255,0.72);

  border: 1px solid rgba(15,18,34,0.08);

  box-shadow:
    0 14px 36px rgba(15,18,34,0.04);
}

.bioPoint p{
  margin-top: 10px;

  color: rgba(15,18,34,0.64);

  line-height: 1.65;
}

.biologicalMedia{
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biologicalMedia img{
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.bioNotice{
  margin-top: 28px;

  padding: 18px 22px;

  border-radius: 22px;

  background: rgba(91,61,245,0.05);

  border: 1px solid rgba(91,61,245,0.10);

  color: rgba(15,18,34,0.70);

  line-height: 1.75;
}

@media (max-width: 1100px){

  .biologicalGrid{
    grid-template-columns: 1fr;
  }

  .biologicalMedia{
    min-height: 340px;
  }
}

/* ONLY for about.html */
.about-page .split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-page .split {
    grid-template-columns: 1fr;
  }

  .about-page .split__media {
    order: -1;
  }
}
/* ========================================================================== */
/* About page – Managing Director                                             */
/* ========================================================================== */

#director-message{
  background: rgba(91, 61, 245, 0.025);
}

.about-page .director-block{
  max-width: 760px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 4px solid rgba(91, 61, 245, 0.28);
}

.about-page .director-block .eyebrow,
.about-page .director-block h2{
  text-align: left;
}

.about-page .director-message{
  margin-top: 2rem;
}

.about-page .director-message p{
  margin-bottom: 1.4rem;
  font-size: 1.06rem;
  line-height: 1.9;
  font-weight: 400;
  color: rgba(15, 18, 34, 0.82);
}

.about-page .director-signature{
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 18, 34, 0.12);
}

.about-page .director-signature strong{
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.about-page .director-signature span{
  display: block;
  margin-top: .2rem;
  font-size: .95rem;
  color: rgba(15, 18, 34, 0.65);
}

@media (max-width: 768px){
  .about-page .director-block{
    padding-left: 22px;
    border-left-width: 3px;
  }
}



/* ==========================================================================
   Terms page — Hero
   ========================================================================== */

.legalHero .legalHero__grid{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

.legalHero .legalHero__copy{
  width: 100%;
  max-width: 1080px;

  margin: 0 auto;
  padding: 64px 0;

  text-align: center;
}

.legalHero .hero__title{
  max-width: 1000px;
  margin: 0 auto 24px;

  text-align: center;
}

.legalHero .hero__lead{
  max-width: 920px;
  margin: 0 auto 32px;

  text-align: center;
  text-wrap: balance;
}

.legalHero .hero__cta{
  justify-content: center;
  margin-bottom: 22px;
}

.legalHero .micro{
  max-width: 820px;
  margin: 0 auto;

  justify-content: center;
  text-align: left;
}


/* ==========================================================================
   Terms page — Content
   ========================================================================== */

.termsSection .section__head{
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.termsList{
  display: grid;
  gap: 14px;

  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.termsItem{
  overflow: hidden;

  border: 1px solid rgba(15, 18, 34, 0.1);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.92);

  transition:
    border-color var(--t),
    box-shadow var(--t);
}

.termsItem[open]{
  border-color: rgba(91, 61, 245, 0.18);

  box-shadow:
    0 14px 38px rgba(15, 18, 34, 0.055);
}

.termsItem__question{
  position: relative;

  padding: 20px 58px 20px 22px;

  cursor: pointer;
  list-style: none;

  font-size: 1rem;
  line-height: 1.4;
  font-weight: 850;
  color: rgba(15, 18, 34, 0.9);
}

.termsItem__question::-webkit-details-marker{
  display: none;
}

.termsItem__question::after{
  content: "+";

  position: absolute;
  top: 50%;
  right: 22px;

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(91, 61, 245, 0.08);
  color: rgba(75, 55, 180, 0.86);

  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;

  transform: translateY(-50%);
  transition: transform var(--t);
}

.termsItem[open] .termsItem__question::after{
  transform: translateY(-50%) rotate(45deg);
}

.termsItem__answer{
  padding:
    0 22px 22px;

  color: rgba(15, 18, 34, 0.68);

  font-size: 0.96rem;
  line-height: 1.75;
}

.termsItem__answer p + p{
  margin-top: 12px;
}


/* ==========================================================================
   Terms page — Notice
   ========================================================================== */

.termsNotice__inner{
  display: flex;
  align-items: flex-start;
  gap: 18px;

  max-width: 940px;
  margin: 0 auto;
  padding: 28px;

  border: 1px solid rgba(91, 61, 245, 0.12);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.76);
}

.termsNotice__icon{
  width: 42px;
  height: 42px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(91, 61, 245, 0.08);
  color: rgba(75, 55, 180, 0.86);

  font-weight: 800;
}

.termsNotice__content p{
  max-width: 780px;

  color: rgba(15, 18, 34, 0.68);
  line-height: 1.7;
}


/* ==========================================================================
   Terms page — Responsive
   ========================================================================== */

@media (min-width: 1100px){
  .legalHero .legalHero__grid{
    grid-template-columns: none;
  }
}

@media (max-width: 760px){
  .legalHero .legalHero__copy{
    padding: 46px 0;
  }

  .legalHero .hero__title{
    font-size: 2.15rem;
  }

  .legalHero .hero__lead{
    max-width: 100%;

    font-size: 1rem;
    line-height: 1.7;

    text-wrap: pretty;
  }

  .legalHero .hero__cta{
    flex-direction: column;
    align-items: center;
  }

  .legalHero .hero__cta .btn{
    width: 100%;
    max-width: 340px;
  }

  .legalHero .micro{
    align-items: flex-start;
    text-align: left;
  }

  .termsItem__question{
    padding: 18px 52px 18px 18px;
  }

  .termsItem__question::after{
    right: 17px;
  }

  .termsItem__answer{
    padding: 0 18px 19px;
  }

  .termsNotice__inner{
    padding: 22px 20px;
  }
}

@media (max-width: 520px){
  .termsNotice__inner{
    flex-direction: column;
  }
}