/* ===========================================
   Price Section
   =========================================== */
.price {
  padding: 80px 20px;
  background-color: #EAEEF7;
}

.price__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.price__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.price__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-number);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 3px;
}

.price__header-content {
  flex: 1;
}

.price__header-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.price__header-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.price__highlight {
  color: var(--color-text);
}

.price__highlight-number {
  font-family: var(--font-number);
  font-size: 2.5rem;
  color: var(--color-text);
}

.price__header-marked {
  position: relative;
  isolation: isolate;
}

.price__header-marked::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #FFCC00;
  opacity: 0.5;
  z-index: -1;
}

.price__note-mark {
  font-size: 0.75rem;
  font-weight: 400;
  vertical-align: super;
  margin-left: 2px;
}

.price__entry-box {
  display: inline-block;
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin: 0 auto 16px;
  display: block;
  width: fit-content;
}

.price__plus {
  text-align: center;
  font-size: 2rem;
  color: #9b9b9b;
  margin-bottom: 16px;
}

.price__note {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 40px;
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 295px);
  gap: 40px;
  justify-content: center;
  margin-bottom: 30px;
}

.price__card {
  position: relative;
  background-color: #FFFFFF;
  padding: 20px;
  text-align: left;
}

.price__card--recommended {
  border: 0;
}

.price__card-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px 0 4px 0;
  margin-bottom: 8px;
}

.price__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.price__card-desc {
  font-size: 0.6875rem;
  color: #444;
  line-height: 1.2;
  margin-bottom: 8px;
}

.price__card-duration {
  font-size: 0.875rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 16px;
}

.price__card-prices {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.price__card-monthly {
  flex: 1;
}

.price__card-total {
  flex: 1;
  text-align: right;
}

.price__card-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.price__card-monthly .price__card-label {
  text-decoration: underline;
}

.price__card-sublabel {
  display: block;
  font-size: 0.6875rem;
  color: #444;
  margin-bottom: 4px;
}

.price__card-amount {
  font-family: var(--font-number);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-primary);
}

.price__card-unit {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price__card-amount-small {
  display: block;
  font-size: 0.6875rem;
  color: #444;
  line-height: 1.2;
}

.price__card-tax {
  display: block;
  font-size: 0.6875rem;
  color: #444;
  line-height: 1.2;
}

.price__card-actual {
  background-color: var(--color-primary);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  min-width: 213px;
}

.price__card-actual-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  margin-right: 8px;
}

.price__card-actual-amount {
  font-family: var(--font-number);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.price__card-actual-yen {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.price__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.75rem;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.price__accordion-trigger {
  cursor: pointer;
  width: 100%;
  padding: 12px 24px;
  font: inherit;
  appearance: none;
}

.price__cta:hover {
  background-color: #f5f5f5;
}

.price__cta svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.price__accordion.is-open .price__cta svg {
  transform: rotate(180deg);
}

.price__accordion-body {
  max-width: 480px;
  margin: 12px auto 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  padding: 14px 16px;
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}

.price__accordion-body a {
  text-decoration: underline;
}

/* ===========================================
   Comparison Section
   =========================================== */
.comparison {
  padding: 60px 20px;
  background-color: var(--color-white);
}

.comparison__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.comparison__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.comparison__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-number);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 3px;
  margin-top: 8px;
}

.comparison__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.comparison__title::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #FFCC00;
  opacity: 0.5;
  z-index: -1;
}

.comparison__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 32px;
  margin-left: 30px;
}

.comparison__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison__th,
.comparison__td {
  border: 1px solid #D090CD;
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3C3C3C;
  line-height: 1.5;
  background-color: var(--color-white);
}

.comparison__th {
  width: 160px;
}

.comparison__th--header {
  background-color: var(--color-white);
}

.comparison__th--highlight {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%),
    linear-gradient(95.73deg, rgba(161, 33, 156, 1) 30.24%, rgba(121, 4, 176, 1) 97.82%);
  font-size: 1.25rem;
}

.comparison__td--label {
  background-color: var(--color-white);
  font-weight: 700;
}

.comparison__td--highlight {
  background-color: #EAE8F6;
}

.comparison__price {
  font-size: 0.875rem;
  font-weight: 700;
}

.comparison__note {
  font-size: 0.75rem;
  font-weight: 500;
  color: #3C3C3C;
}

/* ===========================================
   Story Section
   =========================================== */
.story {
  position: relative;
  padding: 60px 20px 80px;
  overflow: hidden;
}

.story__bg {
  position: absolute;
  inset: 0;
  background-color: #F7F4FF;
  z-index: 0;
}

.story__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
}

.story__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.story__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-number);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 3px;
  margin-top: 8px;
}

.story__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}

.story__title-highlight {
  position: relative;
  display: inline-block;
}

.story__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #FFCC00;
  opacity: 0.5;
  z-index: -1;
}

.story__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.story__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.story__card-info {
  flex: 1;
}

.story__card-name {
  margin-bottom: 8px;
}

.story__card-name-text {
  font-family: var(--font-gothic);
  font-size: 1.25rem;
  font-weight: 700;
  color: #4E1B81;
  display: block;
}

.story__card-age {
  font-family: var(--font-gothic);
  font-size: 0.875rem;
  font-weight: 700;
  color: #4E1B81;
}

.story__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #6121A1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  height: 25px;
  min-width: 46px;
  padding: 0 12px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.story__card-tag--wide {
  min-width: 119px;
}

.story__card-job {
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.story__card-change {
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 12px;
}

.story__card-headline {
  font-family: var(--font-gothic);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 24px;
  background: linear-gradient(105deg, #6515B9 30%, #464BB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.story__card-quote {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 15px;
}

.story__card-quote p {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #444;
  line-height: 22px;
}

.story__card-image {
  flex-shrink: 0;
  width: 210px;
}

.story__card-image img {
  width: 100%;
  height: auto;
}

/* ===========================================
   DAIVE Section
   =========================================== */
.daive {
  position: relative;
  background-color: #231F24;
  padding: 60px 20px 80px;
  overflow: hidden;
}

.daive__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.daive__bg img {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.daive__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(99deg, rgba(35, 31, 36, 1) 0%, rgba(35, 31, 36, 1) 25%, rgba(35, 31, 36, 0.85) 35%, rgba(35, 31, 36, 0) 55%);
  z-index: 1;
}

.daive__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
}

.daive__badge {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.daive__badge::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.daive__badge span {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  transform: rotate(-14deg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.daive__header {
  margin-bottom: 20px;
  margin-left: 100px;
}

.daive__title-box {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px 28px;
  text-align: center;
}

.daive__title-sub {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin: 0;
}

.daive__title-main {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.14em;
  line-height: 1.5;
  margin: 0;
}

.daive__content {
  margin-left: 100px;
  margin-bottom: 40px;
}

.daive__subtitle {
  font-family: var(--font-gothic);
  font-size: 1.625rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.11em;
  line-height: 1.7;
  margin-bottom: 8px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.daive__note {
  font-family: var(--font-gothic);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.daive__desc {
  font-family: var(--font-gothic);
  font-size: 1.375rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.daive__desc--bold {
  font-weight: 700;
  max-width: 875px;
  margin-left: 100px;
  margin-top: 40px;
}

.daive__features {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 40px;
  margin-left: 100px;
}

.daive__feature {
  position: relative;
  width: 280px;
  height: 125px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.daive__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #6515B9 0%, #464BB4 100%);
  border-radius: 8px 0 0 8px;
}

.daive__feature-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.daive__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.daive__feature-text {
  font-family: var(--font-gothic);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3C3C3C;
  line-height: 1.6;
}

.daive__feature-text p {
  margin: 0;
}

/* ===========================================
   CTO Endorsement Section
   =========================================== */
.cto-endorsement {
  padding: 60px 20px 80px;
  background-color: var(--color-white);
}

.cto-endorsement__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.cto-endorsement__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #272D37;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

.cto-endorsement__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.cto-endorsement__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cto-endorsement__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.cto-endorsement__company-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.cto-endorsement__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

.cto-endorsement__card-info {
  text-align: center;
  margin-bottom: 16px;
}

.cto-endorsement__company {
  font-size: 1rem;
  font-weight: 600;
  color: #3C3C3C;
  line-height: 1.5;
  margin: 0 0 4px;
}

.cto-endorsement__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6121A1;
  line-height: 1.5;
  margin: 0;
}

.cto-endorsement__quote {
  max-width: 350px;
}

.cto-endorsement__quote p {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.cto-endorsement__cta {
  max-width: 800px;
  margin: 0 auto;
}

.cto-endorsement__banner {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}

.cto-endorsement__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.cto-endorsement__buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.cto-endorsement__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 358px;
  height: 90px;
  border-radius: 45px;
  text-decoration: none;
  transition: var(--transition);
  padding-top: 14px;
}

.cto-endorsement__btn--primary {
  background: linear-gradient(97.97deg, #6515B9 30.24%, #464BB4 100%);
  color: var(--color-white);
}

.cto-endorsement__btn--secondary {
  background-color: var(--color-white);
  border: 2px solid #6515B9;
  color: #6515B9;
}

.cto-endorsement__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cto-endorsement__btn-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: #EAE8F6;
  padding: 5px 16px;
  border-radius: 30px;
}

.cto-endorsement__btn-badge-text {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(97.97deg, #6515B9 30.24%, #464BB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cto-endorsement__btn-badge-number {
  font-family: var(--font-number);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(97.97deg, #6515B9 30.24%, #464BB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cto-endorsement__btn-badge--pink {
  background-color: #EAE8F6;
}

.cto-endorsement__btn-badge--pink .cto-endorsement__btn-badge-text {
  background: linear-gradient(98.39deg, #A1219C 30.24%, #7904B0 97.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cto-endorsement__btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.cto-endorsement__btn-main {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cto-endorsement__btn-sub {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.125em;
}

.cto-endorsement__btn--secondary .cto-endorsement__btn-main,
.cto-endorsement__btn--secondary .cto-endorsement__btn-sub {
  color: #6515B9;
}

/* ===========================================
   FAQ Section
   =========================================== */
.faq {
  padding: 60px 20px;
  background-color: var(--color-white);
}

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

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background-color: var(--color-white);
  border: 1px solid #E0E0E0;
  border-left: 4px solid #6121A1;
  border-radius: 4px;
  padding: 24px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq__item.is-open .faq__toggle-icon {
  transform: rotate(180deg);
}

.faq__question {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.faq__q,
.faq__a {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 4px;
}

.faq__q {
  background-color: var(--color-white);
  color: #6121A1;
  border: 2px solid #6121A1;
  border-radius: 4px;
  font-weight: 700;
}

.faq__a {
  background-color: #6121A1;
  color: var(--color-white);
  border-radius: 4px;
  font-weight: 700;
}

.faq__question p {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.7;
  color: #444;
  margin: 0;
  flex: 1;
}

.faq__answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
}

.faq__answer.hidden {
  display: none;
}

.faq__answer p {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.7;
  color: #444;
  margin: 0;
  flex: 1;
}

.faq__toggle {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.faq__toggle-icon {
  width: 24px;
  height: 24px;
  color: #6121A1;
  transition: transform 0.3s ease;
}

/* ===========================================
   CTA Section
   =========================================== */
.cta {
  padding: 60px 20px;
  background-color: var(--color-primary);
}

.cta__container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__button {
  display: block;
  padding: 16px 32px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 40px;
  transition: var(--transition);
}

.cta__button--primary {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.cta__button--primary:hover {
  background-color: var(--color-secondary);
}

.cta__button--secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.cta__button--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ===========================================
   Footer
   =========================================== */
.footer {
  padding: 33px 48px 20px;
  background-color: #4A4A4A;
  color: var(--color-white);
}

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__top {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo img {
  display: block;
  height: 40px;
  width: auto;
}

.footer__nav {
  display: flex;
  gap: 58px;
  margin-left: auto;
  margin-right: auto;
}

.footer__nav-col {
  display: contents;
}

.footer__nav a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: underline;
  transition: var(--transition);
}

.footer__nav a:hover {
  opacity: 0.8;
}

.footer__copyright {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-white);
}

/* ===========================================
   Floating Button
   =========================================== */
.floating-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-50%) translateX(-5px);
}

.floating-btn__img {
  display: block;
  width: 140px;
  height: auto;
}