body{font-family: "Noto Sans TC", "微軟正黑體", Arial, sans-serif;background: #FFF; }
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a:hover{text-decoration: none;}

body {
  margin: 0;
  font-family: "Noto Sans TC", "微軟正黑體", Arial, sans-serif;
  color: #1e293b;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-wrap {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: 980px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  height: 88vh;
  overflow: hidden;
  background: #0f172a;
  background: url(../images/bg_hero.png) center;
  background-size: cover;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-icon {
  width: 32px;
  height: 32px;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.2;
}

.hero-inner,
.hero * {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: flex;
  align-items: center;
}

.hero-copy{
  flex: 1.2;
  padding-right: 20px;
}


.hero-visual {
  flex: 0.8;
}

.hero-copy,
.hero-visual {
  width: 50%;
}

.hero-kicker {
  color: #fff;
  background: linear-gradient(90deg, #cd1432, #1e4191 50%, #cd1432);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 1.6rem;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.15;
}

.hero h1 {
  color: #FFF;
  font-weight: bold;
  font-size: 4.8rem;
  letter-spacing: .05rem;
  line-height: 1.25;
  margin: 10px 0 40px;
}

.white-bg-text {
    text-shadow: -2px 0 #fff, 2px 0 #fff, 0 -2px #fff, 0 2px #fff, -2px -2px #fff, 2px -2px #fff, -2px 2px #fff, 2px 2px #fff;
}

.hero .highlight {
  background: #de3d36;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0;
  font-size: 20px;
}

.hero .header-sub {
    background-color: #fff;
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #fff;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.shield-circle {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(37, 99, 235, 0.12));
}

.shield-main {
  position: relative;
  z-index: 2;
  font-size: 150px;
  color: #22d3ee;
  text-shadow: 0 0 35px rgba(34, 211, 238, 0.35);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #1e293b;
  border: 1px solid #334155;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  animation: floatY 3.6s ease-in-out infinite;
}

.card-top-right { top: 34px; right: 34px; }
.card-bottom-left { bottom: 44px; left: 18px; animation-duration: 4.2s; }
.card-middle-right { top: 50%; right: -18px; transform: translateY(-50%); animation-duration: 3s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stats-grid,
.cards-3,
.cards-2,
.two-col {
  display: flex;
  gap: 24px;
}

.stats-grid > *,
.cards-3 > *,
.cards-2 > *,
.two-col > * {
  flex: 1;
}

.stat-card {
  background: rgba(30, 41, 59, 0.82);
  border: 1px solid #334155;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.stat-number {
  color: #22d3ee;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  margin: 0 0 10px;
  color: #e2e8f0;
  font-weight: 600;
}

.stat-source {
  font-size: 13px;
  color: #94a3b8;
  text-align: right;
}

.section {
  padding: 90px 0;
}

.section-white {
  background: #ffffff;
  background: url(../images/lightning.png) no-repeat top center;
  background-size: 100%;
  background-attachment: fixed;
}

.section-light {
  background: #f8fafc;
}

.section-dark {
  background: #0f172a;
  color: #fff;
}

.section-head.center {
  text-align: center;
}

.section-head.left {
  text-align: left;
}

.section-head h2 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 2.2;
  font-weight: bold;
}

.p-scene-heading {
    font-size: 3.2rem;
    height: 96px;
    margin: auto;
    position: relative;
    font-weight: bold;
}

.w-820{
    width: 820px;
}

.w-480{
    width: 480px;
}

.w-710{
    width: 710px;
}

.p-scene-heading strong::after {
    content: "";
    width: 63px;
    height: 16px;
    position: absolute;
    top: -0.25em;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/img_scene_hading_deco.svg) 0% 0% / contain no-repeat;
}

.p-scene-heading strong {
    display: inline-block;
    position: relative;
}

.p-scene-heading::before, .p-scene-heading::after {
    width: 14px;
    height: calc(100% + 2px);
    background: url(../images/img_scene_hading_frame.svg) center center no-repeat;
    background-size: contain;
    display: block;
    content: "";
    top: -1px;
    position: absolute;
}

.p-scene-heading::before {
    left: 0;
}

.p-scene-heading::after {
    right: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.p-scene-heading::before {
    left: 0;
}

.section-head p {
  margin: 0 auto;
  font-size: 19px;
  color: #1e4191;
  margin-top: 4%;
  font-weight: 600;
}

.section-head.white-text p {
  color: #cbd5e1;
}

.feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 22px;
}

.feature-icon.red { background: #fee2e2; }
.feature-icon.orange { background: #ffedd5; }
.feature-icon.blue { background: #dbeafe; }

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.feature-card p {
  margin:10px 0;
  color: #000;
  font-size: 19px;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bullet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bullet-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: rgba(14, 116, 144, 0.25);
  color: #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bullet-item h4 {
  margin: 0 0 6px;
  font-size: 28px;
}

.bullet-item p {
  margin: 0;
  color: #94a3b8;
}

.case-box {
  position: relative;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.case-watermark {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 76px;
  opacity: 0.12;
}

.case-box h3 {
  margin: 0 0 16px;
  font-size: 34px;
  color: #22d3ee;
}

.case-box p {
  margin: 0 0 24px;
  color: #FFF;
  font-size: 18px;
}

.progress-bar {
  height: 8px;
  background: #334155;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  background: linear-gradient(90deg, #cd1432, #1e4191);
}

.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  color: #FFF;
  letter-spacing: 1px;
  font-weight: 700;
}

.timeline {
  position: relative;
  margin-left: 28px;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 60px;
  bottom: 0;
  width: 4px;
  background: #bfdbfe;
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  margin-bottom: 34px;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 8px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 4px solid #de3d36;
  color: #2563eb;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.timeline-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.timeline-card strong{
  color: #de3d36;
}

.timeline-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.35;
}

.timeline-card h3 span {
  display: inline;
  font-size: 16px;
  color: #64748b;
  font-weight: 400;
}

.timeline-card ul,
.btnLink-list {
  margin: 0;
  padding-left: 22px;
}

.timeline-card li,
.btnLink-list li {
  margin-bottom: 10px;
  color: #000;
}

.testimonials-wrap {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.quote-card {
  position: relative;
  background: #f8fafc;
  border-radius: 28px;
  padding: 34px;
}

.quote-mark {
  position: absolute;
  right: 20px;
  top: 2px;
  font-size: 96px;
  color: #dbeafe;
  line-height: 1;
}

.quote-card h4 {
  margin: 0 0 6px;
  font-size: 28px;
}

.quote-course {
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.quote-card p {
  margin: 0 0 18px;
  color: #475569;
}

.quote-card a {
  color: #2563eb;
  font-weight: 700;
}

.btnLink-container {
  max-width: 900px;
}

.btnLink-box {
  background: linear-gradient(90deg, #cd1432, #1e4191 90%);
  color: #fff;
  border-radius: 30px;
  padding: 36px 40px;
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.22);
}

.btnLink-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.btnLink-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.btnLink-head h2 {
  margin: 0;
  font-size: 38px;
}

.btnLink-list li {
  color: #fff;
  font-size: 19px;
  margin-bottom: 16px;
}

.btnLink-note {
  font-size: 14px;
  color: #dbeafe;
}

.footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 80px 0 50px;
  border-top: 1px solid #1e293b;
}

.footer-inner {
  max-width: 900px;
}

.footer h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.35;
}

.footer h2 span {
  color: #22d3ee;
}

.footer p {
  max-width: 720px;
  margin: 0 auto 34px;
  color: #94a3b8;
  font-size: 19px;
}

.footer-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #22d3ee;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(34, 211, 238, 0.24);
}

.btn-primary:hover {
  background: #67e8f9;
}

.btn-secondary {
  background: #1e293b;
  border: 1px solid #334155;
  color: #fff;
}

.btn-secondary:hover {
  background: #334155;
}

.copyright {
  font-size: 13px;
  color: #64748b;
}

.hero-stats-wrap {
  position: relative;
  margin-top: -40px; /* 往上蓋到 hero 底部，可自行調整 */
  z-index: 5;
  padding: 0 20px;
}

.hero-stats {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(90deg, #081a33 0%, #0b1f3d 45%, #0b1b36 100%);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(114, 154, 255, 0.12);
}

.hero-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.hero-stat-item + .hero-stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}

.hero-stat-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #63f2ff;
  font-size: 26px;
  line-height: 1;
}

.hero-stat-text h3 {
  margin: 0 0 6px;
  color: #de3d36;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-stat-text h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-stat-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.5;
}

.hero-stats-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1160px;
  height: 20px;
  background: transparent;
  border-radius: 0 0 18px 18px;
}

.title_icon{
  width: 65px;
  height: 65px;
  display: block;
  margin: 0 auto 12px auto;
}

.section-BG{ background: url(../images/bg_hero.png) center;background-size: cover;}

.Gradient {
    position: relative;
    display: block;
    margin: auto;
    width: fit-content;
    font-weight: bold;
    font-family: neulis-sans, sans-serif;
    font-size: 8vw;
    background: linear-gradient(90deg, #cd1432, #4674dd 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section {
  padding: 70px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 30px 32px 28px;
  box-shadow: 0 10px 30px rgba(20, 31, 56, 0.08);
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 110px;
  line-height: 1;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-meta h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  color: #2f3342;
  font-weight: 700;
}

.testimonial-course {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 12px;
  background: #f4efff;
  border: 1px solid #e4d9ff;
  color: #5c43a8;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 20px;
}

.testimonial-body {
  position: relative;
  z-index: 1;
  color: #000;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.2px;
}

.highlight2 {
    color: rgb(251, 218, 128);
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 991px) {
  .hero-grid,
  .two-col,
  .stats-grid,
  .cards-3,
  .cards-2 {
    flex-direction: column;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .hero h1,
  .section-head h2,
  .footer h2 {
    font-size: 38px;
  }

  .shield-circle {
    width: 320px;
    height: 320px;
  }

  .shield-main {
    font-size: 120px;
  }

  .nav-links {
    display: none;
  }

  .steps-row {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .hero-stat-item + .hero-stat-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 18px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 200px 0 60px;
    height: 100vh;
  }

  .section {
    padding: 70px 0;
  }

  .hero h1,
  .section-head h2,
  .footer h2 {
    font-size: 30px;
  }

  .hero p,
  .section-head p,
  .footer p,
  .btnLink-list li {
    font-size: 16px;
  }

  .feature-card,
  .timeline-card,
  .quote-card,
  .case-box,
  .btnLink-box {
    padding: 24px;
  }

  .timeline {
    margin-left: 10px;
    padding-left: 24px;
  }

  .timeline-dot {
    left: -36px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .timeline-card h3,
  .feature-card h3,
  .bullet-item h4,
  .case-box h3 {
    font-size: 24px;
  }

  .btnLink-head {
    align-items: flex-start;
  }

  .btnLink-head h2 {
    font-size: 30px;
  }

  .footer-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-stats-wrap {
    margin-top: -20px;
    padding: 0 14px;
  }

  .hero-stats {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .hero-stat-item {
    gap: 14px;
  }

  .hero-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
  }

  .hero-stat-text h3 {
    font-size: 20px;
  }

  .hero-stat-text h4 {
    font-size: 13px;
  }
  
  .p-scene-heading {
    width: 100%;
    padding: 0 10px;
  }

  .w-820, .w-480, .w-710{
    width: 100%;
  }

  .p-scene-heading h2{
  font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .testimonial-head {
    align-items: flex-start;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }

  .testimonial-meta h3 {
    font-size: 22px;
  }

  .testimonial-course {
    font-size: 14px;
    padding: 7px 12px;
  }

  .testimonial-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .quote-mark {
    font-size: 84px;
    top: 16px;
    right: 16px;
  }
}



    
/* btnLink */
section#btnLink{padding: 8% 0 80px 0;position: relative;  background: url(../images/bg_hero.png) center;background-size: cover;display: flex;}
section#btnLink button{width: 100%; margin: 15px auto 25px auto; display: block;background: linear-gradient(90deg, #cd1432, #4674dd 90%);color:#FFF; border: 4px solid #FFF; border-radius: 50px; padding: 13px 20px; font-weight: bold; font-size:1.6rem;height: 72px;}
section#btnLink button:hover{transform: translateY(5px);opacity: 0.6;}
section#btnLink .row{margin: 0;}

      
@media(min-width: 1441px){.container {max-width: 1320px;}}

@media(max-width: 767px){
.container{max-width: 100%;}
        
        
/* visual */
header#visual{height: 35vh;}

        
/* First */
/* Second */
/* btnLink */
#btnLink .card{flex-direction: column;}
section#btnLink .btn{width: 100%;}
section#btnLink button{font-size: 1.2rem;}

        
}
      