@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  zoom: 1.12;
}
@media (max-width: 768px) {
  html {
    zoom: 1;
  }
}

body {
  font-family: "Microsoft JhengHei", "微軟正黑體", "Noto Sans TC", sans-serif;
  color: #333;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

#app {
  width: 100%;
  overflow-x: clip;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-animate=fade-up] {
  transform: translateY(48px);
}

[data-animate=fade-right] {
  transform: translateX(-56px);
}

[data-animate=fade-left] {
  transform: translateX(56px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  height: 52px;
  background-color: rgba(0, 0, 0, 0.65);
}
.header .logo {
  height: 28px;
  width: auto;
}
.header .mainNav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .mainNav a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .mainNav a:first-child li {
  border-left: none;
}
.header .mainNav li {
  padding: 0 18px;
  font-size: 15px;
  color: white;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.header .mainNav li:hover {
  color: yellow;
}
@media (max-width: 768px) {
  .header {
    padding: 0 16px;
    height: 44px;
  }
  .header .logo {
    height: 22px;
  }
  .header .mainNav li {
    padding: 0 8px;
    font-size: 13px;
  }
}

@keyframes banner-bg-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes banner-title-in {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes pattern-reveal {
  from {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0% 0 0 0);
    opacity: 1;
  }
}
.banner {
  position: relative;
  overflow: hidden;
}
.banner > img {
  width: 100%;
  display: block;
  opacity: 0;
}
.banner .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .content > img:first-child {
  width: 30%;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.banner__pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
}
.banner__pattern--a {
  left: 2.5%;
  bottom: 0;
  width: 30%;
}
.banner__pattern--b {
  right: 0%;
  bottom: 0;
  width: 30%;
}
.banner.is-animated > img {
  animation: banner-bg-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.banner.is-animated .content > img:first-child {
  animation: banner-title-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.banner.is-animated .banner__pattern--a {
  animation: pattern-reveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
.banner.is-animated .banner__pattern--b {
  animation: pattern-reveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
}
@media (max-width: 768px) {
  .banner .content > img:first-child {
    width: 32%;
  }
  .banner__pattern--a, .banner__pattern--b {
    width: 32%;
  }
}

.scape {
  position: relative;
  overflow: hidden;
}
.scape > img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .scape {
    display: flex;
    flex-direction: column-reverse;
  }
}
.scape .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 72px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scape .content > img {
  height: 100px;
}
@media (max-width: 768px) {
  .scape .content {
    position: static;
    padding: 36px 0;
    background: #0a2668;
  }
  .scape .content > img {
    height: 60px;
  }
}

.epic_01 {
  background: url("../images/epic_01_bg.jpg") no-repeat center;
  background-size: cover;
}
.epic_01__title {
  padding: 64px 0 48px;
}
.epic_01__title .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: stretch;
  gap: 80px;
}
.epic_01__title .wrapper > img {
  width: 240px;
  flex-shrink: 0;
}
.epic_01__title .wrapper .detail {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 80px;
  border-left: 1px solid #aaa;
  font-size: 14px;
  line-height: 2.1;
  color: #666;
}

.epic_01_list .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 60px;
}
.epic_01_list ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.epic_01_list li {
  position: relative;
  display: flex;
}
.epic_01_list li > img,
.epic_01_list li > picture,
.epic_01_list li > picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.epic_01_list li .detail {
  position: absolute;
  top: 0;
  left: 0;
  padding: 80px 56px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35%;
}
.epic_01_list li .detail .head {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #f2eec2;
}
.epic_01_list li .detail p {
  font-size: 13px;
  line-height: 2.1;
  color: #fff;
}
.epic_01_list li:nth-child(even) .detail {
  left: auto;
  right: 0;
}
@media (max-width: 768px) {
  .epic_01_list .wrapper {
    padding: 0;
  }
  .epic_01_list ul {
    gap: 0;
  }
  .epic_01_list li {
    flex-direction: column;
  }
  .epic_01_list li > picture,
  .epic_01_list li > picture img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    order: 2;
  }
  .epic_01_list li .detail {
    position: static;
    width: 100%;
    order: 1;
    padding: 32px 48px;
    background: #0d2240;
    color: #fff;
    text-align: left !important;
  }
  .epic_01_list li .detail .head {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #f2eec2;
  }
  .epic_01_list li .detail p {
    font-size: 13px;
    line-height: 1.9;
    color: #fff;
  }
  .epic_01_list li:nth-child(even) .detail {
    right: auto;
  }
}

@media (max-width: 768px) {
  .epic_01__title {
    padding: 32px 48px;
  }
  .epic_01__title .wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }
  .epic_01__title .wrapper > img {
    width: 180px;
  }
  .epic_01__title .wrapper .detail {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #aaa;
    padding-top: 20px;
    font-size: 13px;
    line-height: 1.9;
  }
}
.epics {
  display: flex;
  align-items: stretch;
  min-height: 400px;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.epics .detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 0;
  position: relative;
  z-index: 2;
}
.epics .detail img {
  width: auto;
  height: 104px;
  margin-bottom: 28px;
}
.epics .detail p {
  font-size: 14px;
  line-height: 2.2;
  color: #fff;
}
.epics img {
  width: 35%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.epics--epic_02 {
  background-image: url("../images/epic_02_BG.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  background-color: #073a6a;
}
.epics--epic_02 .detail {
  padding-left: 12.5%;
}
.epics--epic_03 {
  flex-direction: row-reverse;
  background-image: url("../images/epic_03_BG.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  background-color: #a9eae2;
}
.epics--epic_03 .detail {
  align-items: flex-end;
  padding-right: 12.5%;
}
.epics--epic_03 .detail p {
  text-align: right;
  color: #222;
}
.epics--epic_04 {
  background-image: url("../images/epic_04_BG.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  background-color: #4d968b;
}
.epics--epic_04 .detail {
  padding-left: 12.5%;
}
@media (max-width: 768px) {
  .epics {
    flex-direction: column !important;
    min-height: unset;
    padding: 0;
  }
  .epics img {
    width: 100%;
    max-height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    order: -1;
  }
  .epics .detail {
    padding: 32px 20px !important;
    align-items: flex-start !important;
  }
  .epics .detail img {
    height: 72px;
    margin-bottom: 16px;
  }
  .epics .detail p {
    font-size: 13px;
    line-height: 1.9;
    text-align: left !important;
  }
  .epics--epic_02, .epics--epic_03, .epics--epic_04 {
    background-image: none;
  }
  .epics--epic_02 .detail, .epics--epic_03 .detail, .epics--epic_04 .detail {
    padding: 32px 48px !important;
  }
  .epics--epic_02 .detail br, .epics--epic_03 .detail br, .epics--epic_04 .detail br {
    display: none;
  }
}

.epic-carousel {
  width: 35%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.epic-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.epic-carousel__track img {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  height: 100%;
}
.epic-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  line-height: 1;
  z-index: 2;
}
.epic-carousel__btn--prev { left: 8px; }
.epic-carousel__btn--next { right: 8px; }
@media (max-width: 768px) {
  .epic-carousel {
    width: 100%;
    max-height: 260px;
    order: -1;
  }
  .epic-carousel__track {
    max-height: 260px;
  }
  .epic-carousel__track img {
    max-height: 260px;
  }
}

.epic_05 {
  background: url("../images/epic_05_BG.jpg") center/cover no-repeat;
  padding: 80px 0;
}
.epic_05 .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 64px;
  align-items: center;
}
.epic_05 .wrapper > img {
  width: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.epic_05 .detail {
  flex: 1;
}
.epic_05 .detail > img {
  width: 90%;
  max-width: 360px;
  margin-bottom: 28px;
}
.epic_05 .detail p {
  font-size: 17px;
  line-height: 2.2;
  color: #222;
}
@media (max-width: 768px) {
  .epic_05 {
    background-image: url("../images/epic_05_BG--mobile.png");
    padding: 0;
  }
  .epic_05 .wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .epic_05 .wrapper > img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .epic_05 .detail {
    padding: 48px 48px 112px;
  }
  .epic_05 .detail > img {
    width: 70%;
    max-width: 240px;
    margin-bottom: 16px;
  }
  .epic_05 .detail p {
    font-size: 13px;
    line-height: 1.9;
  }
  .epic_05 .detail p br {
    display: none;
  }
}

.building {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 0;
  position: relative;
  background-image: url("../images/building_BG.jpg");
  background-position: center right;
  background-size: contain;
  background-color: white;
  background-repeat: no-repeat;
}
.building .content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 500px;
  gap: 48px;
}
.building .content > img {
  width: 540px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.building .detail {
  flex: 1;
  width: 540px;
  padding: 70px 68px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2a9389;
}
.building .detail .head {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}
.building .detail p {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 768px) {
  .building {
    padding: 0;
    background-image: none;
  }
  .building::after {
    content: "";
    display: block;
    width: 100%;
    height: 220px;
    background: url("../images/building_BG.jpg") center/cover no-repeat;
  }
  .building .content {
    max-width: 100%;
    min-height: unset;
    gap: 0;
  }
  .building .content > img {
    width: 100%;
    max-height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .building .detail {
    width: 100%;
    padding: 32px 48px;
  }
  .building .detail .head {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .building .detail p {
    font-size: 13px;
    line-height: 1.9;
  }
}

.vision {
  position: relative;
  background: url("../images/vision_BG.jpg") center/cover no-repeat;
  padding: 80px 0;
}
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 36, 0.78);
}
.vision__title {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.vision__title > img {
  margin: 0 auto 28px;
  max-width: 480px;
}
.vision__title p {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.8);
}

.slide {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  gap: 24px;
  padding: 0 14%;
  scroll-padding-inline: 14%;
  position: relative;
  z-index: 1;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slide::-webkit-scrollbar {
  display: none;
}
.slide.is-grabbing {
  cursor: grabbing;
}
.slide__item {
  flex: 0 0 72%;
  scroll-snap-align: center;
  overflow: hidden;
  opacity: 0.45;
  transform: scale(0.94);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide__item.is-active {
  opacity: 1;
  transform: scale(1);
}
.slide__item > img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.slide__item .title {
  background: rgba(8, 22, 50, 0.92);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-align: center;
  padding: 12px 16px;
}

@media (max-width: 768px) {
  .vision {
    padding: 48px;
  }
  .vision__title {
    padding: 0;
    margin-bottom: 32px;
  }
  .vision__title > img {
    width: 100%;
    margin-bottom: 16px;
  }
  .vision__title p {
    font-size: 13px;
    line-height: 1.9;
  }
  .vision__title p br {
    display: none;
  }
  .slide {
    padding: 0 8%;
    scroll-padding-inline: 8%;
    gap: 16px;
  }
  .slide__item {
    flex: 0 0 84%;
  }
}
.contact {
  padding: 96px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact > img {
  height: 48px;
  margin: 0 auto 52px;
}
.contact__form {
  display: flex;
  gap: 60px;
}
.contact__form .section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.formField {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.formField label {
  display: none;
}
.formField #consentLabel {
  display: block;
}
.formField input[type=text],
.formField input[type=email] {
  border: 1px solid #bbb;
  padding: 8px;
  font-size: 14px;
  outline: none;
  background: transparent;
  width: 100%;
  transition: border-color 0.2s;
}
.formField input[type=text]:focus,
.formField input[type=email]:focus {
  border-color: #0d2240;
}
.formField select {
  border: none;
  border: 1px solid #bbb;
  padding: 8px;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: #555;
  cursor: pointer;
  flex: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.formField input[type=checkbox] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #0d2240;
}
.formField:has(#area) {
  gap: 8px;
}
.formField:has(#area) select {
  display: inline-block;
}
.formField:last-child {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.formField:last-child label {
  font-size: 12px;
  flex: 1;
  min-width: 200px;
}

#area,
#district {
  width: calc(50% - 6px);
}

.button {
  background: #0d2240;
  color: #fff;
  padding: 12px 30px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.button:hover {
  background: #1a3a64;
}

@media (max-width: 768px) {
  .contact {
    padding: 48px;
  }
  .contact > img {
    height: 36px;
    margin-bottom: 32px;
  }
  .contact__form {
    flex-direction: column;
    gap: 20px;
  }
  #area,
  #district {
    width: 100%;
  }
  .formField:has(#area) {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .formField:has(#area) select {
    flex: 1 1 calc(50% - 4px);
  }
  .button {
    width: 100%;
    text-align: center;
  }
}
.map {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}
@media (max-width: 768px) {
  .map {
    height: 280px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../images/footer_BG.jpg") center/cover no-repeat;
  padding: 72px 0 48px;
  color: #fff;
}
.footer .wrapper {
  width: auto;
  margin: 0 auto;
  padding: 0 60px;
}
.footer .info {
  display: flex;
  gap: 80px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .info > ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer .info li {
  display: flex;
  gap: 14px;
  font-size: 13px;
  line-height: 1.7;
}
.footer .info li .head {
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  min-width: 60px;
}
.footer .info li .detail {
  color: rgba(255, 255, 255, 0.88);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom img {
  height: 34px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .footer {
    padding: 48px 32px;
  }
  .footer .wrapper {
    padding: 0 20px;
    width: 100%;
  }
  .footer .info {
    flex-direction: column;
    gap: 24px;
  }
  .footer__bottom img {
    height: 24px;
  }
}

.formField input[type=tel] {
  border: 1px solid #bbb;
  padding: 8px;
  font-size: 14px;
  outline: none;
  background: transparent;
  width: 100%;
  transition: border-color 0.2s;
}
.formField input[type=tel]:focus {
  border-color: #0d2240;
}

/* ── Vision Slide Buttons ── */
.slide-wrapper {
  position: relative;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.slide-btn:hover { background: rgba(255, 255, 255, 0.3); }
.slide-btn--prev { left: 7%; }
.slide-btn--next { right: 7%; }
@media (max-width: 768px) {
  .slide-btn { font-size: 28px; padding: 6px 10px; }
}

/* ── Facility Carousel ── */
.facility-carousel {
  width: 540px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.facility-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.facility-carousel__track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}
.facility-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  padding: 6px 12px;
  line-height: 1;
  transition: background 0.2s;
  z-index: 2;
}
.facility-carousel__btn:hover { background: rgba(0,0,0,0.6); }
.facility-carousel__btn--prev { left: 0; }
.facility-carousel__btn--next { right: 0; }
.facility-carousel__caption {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  pointer-events: none;
}
.facility-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.facility-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}
.facility-dot.is-active { background: #fff; }
@media (max-width: 768px) {
  .facility-carousel { width: 100%; }
}

/* ── Modals ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 48px 40px 40px;
  text-align: center;
  max-width: 360px;
  width: 90%;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover { color: #000; }
.modal-icon {
  color: #0d2240;
  margin-bottom: 16px;
}
.modal-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}
.modal-number {
  font-size: 26px;
  font-weight: 700;
  color: #0d2240;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.modal-btn {
  display: inline-block;
  padding: 12px 36px;
  background: #0d2240;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.modal-btn:hover { background: #1a3a64; }

/*# sourceMappingURL=style.css.map */