.hero-about {
  position: relative;
  background: linear-gradient(135deg, #0A3FA8 0%, #062766 100%);
  color: #fff;
  padding: 170px 0 80px;
  text-align: center;
}
.hero-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 39, 102, 0.1) 0%, rgba(6, 39, 102, 0.55) 100%);
  pointer-events: none;
}
.hero-about .inner {
  position: relative;
  z-index: 2;
}
.hero-about .kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #b9d0f2;
  margin-bottom: 12px;
}
.hero-about h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
}
.hero-about p {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 2;
  color: #e7effb;
}

.viz-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  opacity: 1 !important;
  display: block !important;
}

.additive-section {
  position: relative;
}

.additive-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  text-align: left;
}
@media (max-width: 768px) {
  .additive-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.additive-grid h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.5;
  margin: 0 0 20px;
  color: #0B1420;
}
.additive-grid p {
  font-size: 14.5px;
  line-height: 2;
  color: #2A3648;
  margin: 0;
}
.additive-grid .num {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(64px, 10vw, 96px);
  color: #0A3FA8;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}
.additive-grid .num small {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.1em;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

.badge-pill {
  border: 1px solid #E5EAF2;
  padding: 12px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #2A3648;
  background: #F7F9FC;
  border-radius: 2px;
}
.badge-pill.full-width {
  grid-column: 1/-1;
  background: #F3F7FD;
  border-color: #B8D0F2;
  color: #062766;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.comparison-wrapper {
  margin: 64px auto 0;
  max-width: 900px;
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(10, 63, 168, 0.08);
  border: 1px solid #E5EAF2;
  position: relative;
}

.comparison-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #062766;
  margin: -32px -32px 32px;
  padding: 16px;
  border-radius: 4px 4px 0 0;
  letter-spacing: 0.05em;
}

.comparison-flex {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
.comparison-flex::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  bottom: 32px;
  width: 2px;
  border-left: 2px dashed #E5EAF2;
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 768px) {
  .comparison-flex {
    flex-direction: column;
    gap: 16px;
  }
  .comparison-flex::after {
    display: none;
  }
}

.comp-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.comp-item.esion .comp-body {
  border-color: #1E6BE6;
}

.comp-head {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #062766;
}

.comp-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 2px solid #B8D0F2;
  min-height: 240px;
  background: #fff;
}

.comp-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  flex-direction: column;
}
.comp-box.main-cleanser {
  background: #e6f0fa;
  flex: 1;
  color: #062766;
}
.comp-box.waste-cleanser {
  background: #ffe6e6;
  color: #d32f2f;
  padding: 12px;
  border-top: 1px dashed #f8caca;
}
.comp-box.fragrance {
  background: #ffcccc;
  color: #d32f2f;
  border-top: 1px solid #f8caca;
  padding: 20px;
}

.comp-foot {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #2A3648;
  text-align: center;
}
.comp-foot .highlight {
  display: block;
  font-size: 18px;
  color: #062766;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.features {
  background: #F7F9FC;
  border-top: 1px solid #EEF1F6;
  border-bottom: 1px solid #EEF1F6;
}

.feat-head {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 80px);
}
.feat-head .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #0A3FA8;
}
.feat-head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4.4vw, 56px);
  margin: 14px 0 0;
  font-weight: 700;
  line-height: 1.2;
}
.feat-head h2 em {
  font-style: normal;
  color: #0A3FA8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
}

.feature-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.feature-row:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}
.feature-row:nth-child(even) .viz {
  order: 2;
}
.feature-row:nth-child(even) .text {
  order: 1;
}
.feature-row .viz {
  aspect-ratio: 4/3;
  background: #F3F7FD;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.feature-row .viz .stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(10, 63, 168, 0.05) 18px 19px);
  z-index: 0;
}
.feature-row .viz .label {
  position: relative;
  color: #0A3FA8;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-align: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.feature-row:nth-child(2) .viz {
  background: #E6EFFA;
}
.feature-row:nth-child(2) .viz .stripe {
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(10, 63, 168, 0.08) 18px 19px);
}
.feature-row:nth-child(3) .viz {
  background: #EDF2FB;
}
.feature-row .text .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: #0A3FA8;
  margin-bottom: 16px;
  display: block;
}
.feature-row .text h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  margin: 0 0 20px;
  color: #0B1420;
}
.feature-row .text h3 .en {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #5A6677;
  letter-spacing: 0.16em;
  margin-top: 10px;
  text-transform: uppercase;
}
.feature-row .text p {
  color: #2A3648;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}
.feature-row .text ul {
  padding-left: 0;
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #2A3648;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.feature-row .text ul li {
  position: relative;
  padding-left: 20px;
}
.feature-row .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: #0A3FA8;
}
.feature-row .text ul li strong {
  color: #062766;
  font-weight: 700;
  display: inline-block;
  margin-right: 6px;
}
@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row:nth-child(even) .viz {
    order: -1;
  }
  .feature-row .text {
    order: 2;
  }
}

.stats {
  background: #0A3FA8;
  color: #fff;
  padding: clamp(40px, 6vw, 64px) 0;
}
.stats .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 1024px) {
  .stats .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    text-align: left;
  }
}
.stats .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.stats .stat .num {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}
.stats .stat .num small {
  font-size: 18px;
  margin-left: 6px;
  font-weight: 500;
}
.stats .stat .lab {
  font-size: 13px;
  color: #cfdcfa;
  letter-spacing: 0.08em;
}
.stats .stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 1024px) {
  .stats .stat + .stat {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .stats .stat:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 16px;
  }
}

.formula {
  position: relative;
  overflow: hidden;
}
.formula .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 768px) {
  .formula .wrap {
    grid-template-columns: 1fr;
  }
}
.formula .visual {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #E6EFFA 0%, #F3F7FD 100%);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .formula .visual {
    order: -1;
  }
}
.formula .visual .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #D3E3F8 60%, #9BBCEB 100%);
  box-shadow: inset 0 -10px 30px rgba(10, 63, 168, 0.15);
  z-index: 2;
}
.formula .visual .b1 {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  top: 18%;
  right: 10%;
}
.formula .visual .b2 {
  width: 30%;
  height: auto;
  aspect-ratio: 1;
  top: 46%;
  left: 10%;
}
.formula .visual .b3 {
  width: 20%;
  height: auto;
  aspect-ratio: 1;
  bottom: 14%;
  right: 22%;
}
.formula .visual .tag-float {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border: 1px solid #E5EAF2;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #5A6677;
  font-family: "Inter", sans-serif;
  max-width: calc(100% - 36px);
  font-weight: 600;
  z-index: 3;
}
.formula .body .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #0A3FA8;
}
.formula .body h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  margin: 14px 0 22px;
  font-weight: 700;
}
.formula .body h2 em {
  font-style: normal;
  color: #0A3FA8;
}
.formula .body p {
  font-size: 14.5px;
  line-height: 2;
  color: #2A3648;
  margin: 0 0 20px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.bullet-list li {
  padding-left: 28px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.8;
  color: #2A3648;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: #0A3FA8;
}
.bullet-list li b {
  color: #0B1420;
  font-weight: 700;
  margin-right: 6px;
  display: inline-block;
}

.column-box {
  margin-top: 32px;
  background: #F7F9FC;
  border: 1px solid #EEF1F6;
  border-radius: 8px;
  padding: 24px;
  position: relative;
}
.column-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #0A3FA8;
  border-radius: 8px 0 0 8px;
}
.column-box .column-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #062766;
  margin: 0 0 12px;
  line-height: 1.4;
}
.column-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #2A3648;
  margin: 0 0 12px;
}
.column-box .column-conclusion {
  font-size: 14.5px;
  font-weight: 700;
  color: #062766;
  margin: 0 !important;
}

.mfg {
  background: #fff;
  border-top: 1px solid #E5EAF2;
}
.mfg .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 768px) {
  .mfg .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.mfg .viz {
  aspect-ratio: 4/3;
  background: #F7F9FC;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.mfg .viz .stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(10, 63, 168, 0.04) 22px 23px);
  z-index: 0;
}

.mfg-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 24px;
}
.mfg-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mfg-list li svg {
  width: 24px;
  height: 24px;
  color: #0A3FA8;
  flex-shrink: 0;
  margin-top: 4px;
}
.mfg-list li h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0B1420;
  font-weight: 700;
}
.mfg-list li p {
  margin: 0;
  font-size: 13.5px;
  color: #2A3648;
  line-height: 1.8;
}

.reviews {
  background: #F7F9FC;
  border-top: 1px solid #EEF1F6;
}
.reviews .wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 72px);
}
@media (max-width: 768px) {
  .reviews .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.rev-intro .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #0A3FA8;
}
.rev-intro h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  margin: 14px 0 18px;
  font-weight: 700;
}
.rev-intro .rating {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
}
.rev-intro .score {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(48px, 6vw, 56px);
  font-weight: 700;
  color: #0A3FA8;
  line-height: 1;
}
.rev-intro .rmeta {
  font-size: 12.5px;
  color: #5A6677;
  line-height: 1.6;
  font-weight: 500;
}
.rev-intro .rmeta .stars {
  color: #D9A12B;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .rev-grid {
    grid-template-columns: 1fr;
  }
}

.rev-card {
  border: 1px solid #E5EAF2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  position: relative;
  border-radius: 4px;
}
.rev-card .tag {
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #fff;
  background: #0A3FA8;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
}
.rev-card blockquote {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  color: #0B1420;
  font-weight: 500;
}
.rev-card .who {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #EEF1F6;
  font-size: 12px;
  color: #5A6677;
  font-weight: 500;
}

.movie {
  background: #062766;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.movie::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 10%, rgba(30, 107, 230, 0.5) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(10, 63, 168, 0.7) 0%, transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}
.movie .wrap {
  position: relative;
  z-index: 1;
}
.movie .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}
.movie .section-head .lead h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  margin: 10px 0 0;
  color: #fff;
}
.movie .section-head .lead .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b9d0f2;
}
.movie .section-head .aside {
  color: #cfdcfa;
  font-size: 13.5px;
  max-width: 360px;
  line-height: 1.9;
}

.player {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0A3FA8 0%, #062766 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 4px;
}
.player:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.player:hover .playbtn {
  transform: scale(1.06);
}
.player::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.18), transparent 40%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.12), transparent 45%), radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.08), transparent 30%);
}
.player .playbtn {
  position: relative;
  width: clamp(60px, 10vw, 92px);
  height: clamp(60px, 10vw, 92px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0A3FA8;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.player .playbtn svg {
  width: clamp(20px, 3vw, 28px);
  height: clamp(20px, 3vw, 28px);
  margin-left: 4px;
}
.player .cap {
  position: absolute;
  bottom: clamp(12px, 3vw, 24px);
  left: clamp(12px, 3vw, 28px);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 2.5vw, 20px);
  line-height: 1.4;
  max-width: 480px;
}
.player .duration {
  position: absolute;
  top: clamp(12px, 3vw, 24px);
  right: clamp(12px, 3vw, 28px);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.guarantee {
  padding: clamp(40px, 8vw, 80px) 0;
  background: #E6EFFA;
  position: relative;
}
.guarantee .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  justify-content: center;
  max-width: 840px;
}
@media (max-width: 768px) {
  .guarantee .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.shield {
  width: 110px;
  height: 130px;
  background: #0A3FA8;
  color: #fff;
  clip-path: polygon(50% 0, 100% 18%, 100% 70%, 50% 100%, 0 70%, 0 18%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
  gap: 2px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .shield {
    margin: 0 auto;
  }
}
.shield .d {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.shield .d small {
  font-size: 12px;
  margin-left: 1px;
}
.shield .l {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #cfdcfa;
}
.shield .b {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 4px;
}

.g-body h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 10px;
  line-height: 1.4;
  color: #062766;
  font-weight: 700;
}
.g-body p {
  margin: 0;
  font-size: 13.5px;
  color: #2A3648;
  line-height: 1.9;
}

.bottom-button-wrapper {
  text-align: center;
  padding: 80px 28px 120px;
}
@media (max-width: 768px) {
  .bottom-button-wrapper {
    padding: 60px 20px 80px;
  }
}

.btn-bottom-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 64px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  background: #0A3FA8;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(10, 63, 168, 0.5);
  transition: all 0.2s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .btn-bottom-cta {
    width: 100%;
    padding: 18px 24px;
  }
}
.btn-bottom-cta:hover {
  background: #062766;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(10, 63, 168, 0.6);
}
.btn-bottom-cta svg {
  width: 20px;
  height: 20px;
}/*# sourceMappingURL=about.css.map */