/* memo-v2.css */

.memo-main-v2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #FFFFFF;
}

.memo-v2-section {
  display: flex;
  flex-direction: column;
  padding: 60px 96px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.memo-v2-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.15em;
  color: #797979;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.memo-v2-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: #383893;
  margin: 0 0 14px 0;
}

.memo-v2-title-black {
  color: #000000;
}

.memo-v2-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin: 0;
  max-width: 1248px;
}

/* 1. Header */
.memo-v2-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 96px 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.memo-v2-hero-header {
  position: relative;
  width: 100%;
  max-width: 1248px;
  height: 777px;
  background-color: #000;
  border-radius: 28px;
  overflow: hidden;
  margin: 60px auto;
  background-image: url('../assets-new/Portfolio%20Assets/Bonds/NEW%20INNER%20PAGES/MEMO/Memo%20Header.svg');
  background-size: cover;
  background-position: center;
}

.memo-v2-hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.memo-v2-hero-topper {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #11112D;
  margin: 0;
}

.memo-v2-hero-main {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 120px;
  line-height: 145px;
  text-align: center;
  color: #000000;
  margin: 0;
}

.memo-v2-hero-tags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.memo-v2-hero-tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  border: 1px solid #383893;
  border-radius: 100000px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

/* 2. The Idea */
.memo-v2-testimonials {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.memo-v2-testimonial {
  flex: 1;
  background: #F6F6F6;
  border-radius: 16px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.memo-v2-testimonial:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.memo-v2-testimonial-icon {
  width: 16px;
  height: 16px;
  background-color: #383893;
  mask: url('../assets-new/Portfolio\ Assets/Bonds/quote\ \(1\).png') no-repeat center / contain;
  -webkit-mask: url('../assets-new/Portfolio\ Assets/Bonds/quote\ \(1\).png') no-repeat center / contain;
}

.memo-v2-testimonial-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin: 0;
}

/* 3. Metrics */
.memo-v2-video-box {
  width: 100%;
  max-width: 1248px;
  height: 777px;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 40px;
  background: #f0f0f0;
}

.memo-v2-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memo-v2-stats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.memo-v2-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.memo-v2-stat-bar {
  width: 5px;
  height: 72px;
  background: #383893;
  flex-shrink: 0;
}

.memo-v2-stat-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}

/* 4. Process */
.memo-v2-process-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.memo-v2-process-card {
  flex: 1;
  background: #F6F6F6;
  border-radius: 16px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.memo-v2-process-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.memo-v2-process-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #383893;
  margin: 0;
}

.memo-v2-process-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin: 0;
}

.memo-v2-process-detail {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin: 0;
  white-space: pre-wrap;
}

/* 5. Brand System */
.memo-v2-brand-grid {
  display: grid;
  grid-template-columns: 383fr 306fr 306fr 181fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1248px;
  margin-top: 40px;
}

.memo-v2-brand-grid img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.memo-v2-brand-grid img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.memo-v2-brand-gradient {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.memo-v2-brand-logocon1 {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.memo-v2-brand-memocon {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.memo-v2-brand-logocon2 {
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.memo-v2-brand-memowhite {
  grid-column: 3;
  grid-row: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.memo-v2-brand-endgrad {
  grid-column: 4;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* 6. Typography */
.memo-v2-typography-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 40px;
}

.memo-v2-type-header {
  flex: 0 0 466px;
}

.memo-v2-type-boxes {
  flex: 0 0 495.07px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 50px;
  height: 174px;
  width: 495.07px;
}

.memo-v2-type-box {
  position: relative;
  height: 171.25px;
  box-sizing: border-box;
  border: 1.69556px solid #11112D;
  border-radius: 16.9556px;
  background: #FFFFFF;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.memo-v2-type-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.memo-v2-type-box-light {
  width: 120.38px;
}

.memo-v2-type-box-regular {
  width: 137.34px;
}

.memo-v2-type-box-medium {
  width: 137.34px;
}

.memo-v2-type-label {
  position: absolute;
  top: 14.94px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 23.7378px;
  line-height: 29px;
  letter-spacing: 0.1em;
  color: #000000;
  margin: 0;
}

.memo-v2-type-box-light .memo-v2-type-label {
  left: 24.08px;
  width: 74.08px;
}

.memo-v2-type-box-regular .memo-v2-type-label {
  left: 16.96px;
  width: 103px;
}

.memo-v2-type-box-medium .memo-v2-type-label {
  left: 16.96px;
  width: 105px;
}

.memo-v2-type-line {
  position: absolute;
  top: 69.2px;
  height: 0px;
  border-top: 1.69556px solid #000000;
}

.memo-v2-type-box-light .memo-v2-type-line {
  left: 11.11px;
  width: 98.16px;
}

.memo-v2-type-box-regular .memo-v2-type-line {
  left: 23.74px;
  width: 89.86px;
}

.memo-v2-type-box-medium .memo-v2-type-line {
  left: 23.74px;
  width: 89.86px;
}

.memo-v2-type-a {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: #000000;
  margin: 0;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.memo-v2-type-box:hover .memo-v2-type-a {
  transform: scale(1.1);
  color: #383893;
}

.memo-v2-type-box-light .memo-v2-type-a {
  top: 96.94px;
  left: 35.6px;
  width: 43.08px;
  height: 56.43px;
  font-size: 56.43px;
  font-weight: 300;
}

.memo-v2-type-box-regular .memo-v2-type-a {
  top: 96.94px;
  left: 46.12px;
  width: 44.49px;
  height: 56.43px;
  font-size: 56.43px;
  font-weight: 400;
}

.memo-v2-type-box-medium .memo-v2-type-a {
  top: 96.61px;
  left: 43.89px;
  width: 46.66px;
  height: 56.75px;
  font-size: 56.43px;
  font-weight: 500;
}

/* 7. Product */
.memo-v2-product-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.memo-v2-btn {
  background: #383893;
  border-radius: 10000px;
  padding: 15px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.memo-v2-btn-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 16px;
  color: #FFFFFF;
}

.memo-v2-btn-icon {
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-left: 2px;
}

.memo-v2-product-images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.memo-v2-product-phone {
  width: 243px;
  height: 498px;
}

.memo-v2-product-vr {
  width: 885px;
  height: 498px;
  border-radius: 16px;
}

/* 8. Collaterals */
.memo-v2-collaterals-grid {
  display: grid;
  grid-template-columns: 258fr 258fr 258fr 388fr;
  gap: 24px 30px;
  width: 100%;
  max-width: 1248px;
  margin-top: 40px;
}

.memo-v2-collaterals-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.memo-v2-collaterals-grid img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.memo-v2-col-linkedin {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.memo-v2-col-pack {
  grid-column: 4;
  grid-row: 1;
}

.memo-v2-col-browser {
  grid-column: 1;
  grid-row: 2;
}

.memo-v2-col-tab {
  grid-column: 2;
  grid-row: 2;
}

.memo-v2-col-phone {
  grid-column: 3;
  grid-row: 2;
}

.memo-v2-col-merch {
  grid-column: 4;
  grid-row: 2;
}

/* 9. Looking Back */
.memo-v2-lookingback {
  background: #FFFFFF;
}

/* 10. Links */
.memo-v2-links-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
}

.memo-v2-link-card {
  flex: 1;
  border: 1px solid #D7D6D6;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.memo-v2-link-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.memo-v2-link-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.memo-v2-link-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #383893;
  margin: 0;
}

.memo-v2-link-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.memo-v2-link-arrow {
  width: 16px;
  height: 16px;
  background: #383893;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.memo-v2-link-arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
}

/* Other Projects reuse */
.memo-v2-other-projects {
  padding-bottom: 80px;
}

/* SiyArts Pop Hover Cards */
.siyarts-hover-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}
.siyarts-hover-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-pop-asset {
  transition: transform 0.3s ease;
}
.hover-pop-asset:hover {
  transform: translateY(-8px) scale(1.03);
}
