/* ===========================
   TOPページ専用CSS
   =========================== */

/* ===========================
   ヘッダー透明化（KVに重ねる）
   =========================== */
.page-top .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
}

.page-top .header--transparent .header__nav-utility a,
.page-top .header--transparent .header__nav-main a {
  color: var(--navy);
}

/* ===========================
   セクション共通
   =========================== */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 12px;
}

.section-eyebrow--gray {
  color: #999;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

.section-title--center {
  text-align: center;
}

.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===========================
   KVセクション
   =========================== */
.kv {
  position: relative;
  min-height: 900px;
  background: #fff;
  overflow: hidden;
}

.kv__bg-image {
  position: absolute;
  top: 105px;
  right: 0;
  width: 65%;
  height: 727px;
  object-fit: cover;
  border-radius: 354px 0 0 0;
  display: block;
}

.kv__copy {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  left: max(32px, calc((100vw - 1200px) / 2 + 60px));
  z-index: 10;
}

.kv__copy h1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 60px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.kv__copy h1 span {
  background: #fff;
  padding: 6px 20px 6px 0;
  display: inline-block;
}

.kv__servers {
  position: absolute;
  bottom: 0;
  right: 4%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 5;
}

.kv__servers img {
  display: block;
  flex-shrink: 0;
}

.kv__scroll {
  position: absolute;
  left: max(16px, calc((100vw - 1200px) / 2 + 16px));
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.kv__scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  writing-mode: vertical-rl;
  text-transform: lowercase;
}

.kv__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--cyan);
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   aboutセクション
   =========================== */
.about {
  background: #fff;
  padding: 96px 0;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  width: 383px;
  height: 383px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

.about__body {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* ===========================
   レシピバナー
   =========================== */
.recipe-banner {
  background-image: url('../assets/images/kv-water-ripple.png');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  min-height: 424px;
  display: flex;
  align-items: center;
}

.recipe-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.recipe-banner__text {
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recipe-banner__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #999;
  display: block;
}

.recipe-banner__heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

.recipe-banner__btn {
  display: inline-block;
  border: 1.5px solid var(--cyan);
  border-radius: 100px;
  padding: 12px 32px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}

.recipe-banner__btn:hover {
  background: var(--cyan);
  color: #fff;
}

.recipe-banner__image-wrap {
  display: flex;
  justify-content: center;
}

.recipe-banner__img {
  width: 100%;
  max-width: 420px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

/* ===========================
   メリットセクション（4つの理由）
   =========================== */
.benefits {
  background: #fff;
  padding: 96px 0;
}

.benefits__head {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  background: #fff;
  border: 1.5px solid var(--cyan);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.benefit-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--cyan);
  font-weight: 400;
  display: block;
  align-self: flex-start;
}

.benefit-card__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  text-align: center;
}

.benefit-card__badge {
  background: #f0f0f0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 100px;
  display: inline-block;
}

.benefit-card__body {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  text-align: center;
}

/* ===========================
   仕組みセクション（How It Works）
   =========================== */
.mechanism {
  background: #fff;
  padding: 96px 0;
}

.mechanism__head {
  text-align: center;
  margin-bottom: 56px;
}

.mechanism__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 1046px;
  margin: 0 auto;
  padding: 0 60px;
}

.mechanism__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin-top: 100px;
  color: var(--cyan);
  font-size: 28px;
  font-weight: 700;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  display: block;
}

.step-card__images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
}

.step-card__img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.step-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

.step-card__body {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  text-align: center;
}

/* ===========================
   ミネラルセクション
   =========================== */
.mineral {
  background: #f7f9fb;
  padding: 80px 0;
}

.mineral__problem {
  border: 1px solid #d0d8e4;
  border-radius: 16px;
  background: #fff;
  padding: 48px;
  margin-bottom: 32px;
  text-align: center;
}

.mineral__problem-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 32px;
}

.mineral__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.mineral__info-box {
  background: #f5f7fb;
  border-radius: 12px;
  padding: 24px;
}

.mineral__info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.mineral__info-body {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.mineral__arrow {
  text-align: center;
  font-size: 48px;
  color: var(--cyan);
  padding: 16px 0;
  margin-bottom: 32px;
}

.mineral__solution {
  border: 2px solid var(--cyan);
  border-radius: 16px;
  background: #fff;
  padding: 48px;
  text-align: center;
  position: relative;
}

.mineral__mascot {
  position: absolute;
  bottom: 16px;
  left: 24px;
  width: 70px;
  height: auto;
}

.mineral__solution-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mineral__solution-body {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}

/* ===========================
   商品セクション
   =========================== */
.products {
  background: #fff;
  padding: 96px 0;
}

.products__head {
  text-align: center;
  margin-bottom: 48px;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  border: 1.5px solid var(--cyan);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding-bottom: 32px;
}

.product-card__header {
  background: var(--cyan);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
}

.product-card__img {
  width: auto;
  height: 200px;
  object-fit: contain;
  margin: 24px auto;
}

.product-card__filters {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.product-card__filter-img {
  width: auto;
  height: 140px;
  object-fit: contain;
}

.product-card__plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.product-card__pricing {
  text-align: center;
  padding: 0 24px;
}

.product-card__regular {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.product-card__old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.product-card__new {
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.product-card__unit {
  font-size: 20px;
}

/* ===========================
   ポイント制度セクション
   =========================== */
.points {
  background: #fff;
  padding: 80px 0;
}

.points__head {
  text-align: center;
  margin-bottom: 48px;
}

.points__blocks {
  max-width: 1046px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.points-block {
  border: 1.5px solid var(--cyan);
  border-radius: 16px;
  padding: 36px 40px;
  background: #fff;
}

.points-block__label {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.points-block__text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.points-block__sarani {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.points-block__sarani img {
  width: 80px;
  height: auto;
}

.points-block__continuation {
  background: #f5f7fb;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.points-block__wls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.points-block__wls-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.points-block__wls-item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.points-block__filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.points-block__filter-row img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.points-block__filter-info {
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.points-block__filter-info span {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

/* ===========================
   ご購入の流れ
   =========================== */
.purchase-flow {
  background: #e8f6f8;
  padding: 96px 0;
}

.purchase-flow__head {
  text-align: center;
  margin-bottom: 48px;
}

.purchase-flow__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.flow-col {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--cyan);
}

.flow-col__header {
  background: var(--cyan);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
}

.flow-col__header--gray {
  background: #888;
}

.flow-col__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.flow-step:last-of-type {
  border-bottom: none;
}

.flow-step__icon-wrap {
  width: 48px;
  height: 48px;
  background: #e8f6f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.flow-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.flow-step__body {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.flow-col__promo {
  background: #f0f8f9;
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.flow-col__promo-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
}

.flow-col__promo-btn {
  /* uses .home-btn styles */
}

/* ===========================
   お客様の声
   =========================== */
.testimonials {
  background: #f7f9fb;
  padding: 96px 0;
}

.testimonials__head {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1.5px solid var(--cyan);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-card__avatar {
  flex-shrink: 0;
}

.review-card__top-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-card__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

.review-card__badge {
  display: inline-block;
  background: #f0f0f0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 100px;
  width: fit-content;
}

.review-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  background: #fff;
  padding: 80px 0;
}

.faq__head {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
}

.faq-item__q-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--cyan);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.faq-item__q-text {
  flex: 1;
}

.faq-item__toggle {
  font-size: 22px;
  color: var(--cyan);
  font-weight: 400;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-item__answer {
  padding: 0 0 20px 48px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ===========================
   会員セクション
   =========================== */
.membership-section {
  background: #fff;
  padding: 64px 0;
}

/* ===========================
   ウォーターサーバー以外の商品
   =========================== */
.other-products {
  background: #f7f9fb;
  padding: 80px 0;
}

.other-products__inner {
  max-width: 1046px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.other-products__img {
  width: 450px;
  height: auto;
  display: block;
}

.other-products__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.6;
}

.other-products__body {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.other-products__btn {
  display: inline-block;
  border: 1.5px solid var(--cyan);
  border-radius: 100px;
  padding: 12px 28px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.other-products__btn:hover {
  background: var(--cyan);
  color: #fff;
}

/* ===========================
   フッター
   =========================== */
.footer {
  background: var(--navy);
  padding: 64px 60px 32px;
  color: #fff;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.75;
}

.footer__nav-title {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer__nav-list a:hover {
  opacity: 1;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.5;
  font-family: 'Montserrat', sans-serif;
}

.footer__bottom-nav {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer__bottom-nav a {
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer__bottom-nav a:hover {
  opacity: 1;
}

/* ===========================
   レスポンシブ - 1100px以下
   =========================== */
@media (max-width: 1100px) {
  .kv__copy h1 {
    font-size: 44px;
  }

  .benefits__grid {
    gap: 16px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .purchase-flow__cols {
    grid-template-columns: 1fr;
  }

  .other-products__img {
    width: 300px;
  }
}

/* ===========================
   レスポンシブ - 767px以下
   =========================== */
@media (max-width: 767px) {
  .kv {
    min-height: 600px;
  }

  .kv__bg-image {
    width: 100%;
    height: 380px;
    top: 0;
    border-radius: 0;
    opacity: 0.35;
  }

  .kv__copy {
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .kv__copy h1 {
    font-size: 32px;
  }

  .kv__servers {
    display: none;
  }

  .kv__scroll {
    display: none;
  }

  .about {
    padding: 60px 0;
  }

  .about__inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .recipe-banner {
    padding: 40px 0;
    min-height: auto;
  }

  .recipe-banner__inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recipe-banner__text {
    padding: 24px;
  }

  .recipe-banner__heading {
    font-size: 22px;
  }

  .recipe-banner__img {
    height: 200px;
    max-width: 100%;
  }

  .benefits {
    padding: 60px 0;
  }

  .content-wrap {
    padding: 0 20px;
  }

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

  .mechanism {
    padding: 60px 0;
  }

  .mechanism__steps {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .mechanism__arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }

  .mineral {
    padding: 60px 0;
  }

  .mineral__problem {
    padding: 28px 20px;
    margin-bottom: 16px;
  }

  .mineral__problem-heading {
    font-size: 18px;
  }

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

  .mineral__solution {
    padding: 28px 20px;
  }

  .mineral__solution-heading {
    font-size: 18px;
  }

  .mineral__mascot {
    position: static;
    margin: 0 auto 16px;
    display: block;
  }

  .products {
    padding: 60px 0;
  }

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

  .points {
    padding: 60px 0;
  }

  .points__blocks {
    padding: 0 20px;
  }

  .points-block {
    padding: 24px 20px;
  }

  .points-block__wls-grid {
    grid-template-columns: 1fr;
  }

  .purchase-flow {
    padding: 60px 0;
  }

  .purchase-flow__cols {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 60px 0;
  }

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

  .faq {
    padding: 60px 0;
  }

  .faq__list {
    margin: 0 20px;
  }

  .membership-section {
    padding: 60px 0;
  }

  .other-products {
    padding: 60px 0;
  }

  .other-products__inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .other-products__img {
    width: 280px;
    margin: 0 auto;
  }

  .footer {
    padding: 48px 20px 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}
