:root {
  --ink: #10233f;
  --muted: #5e6d7f;
  --teal: #0b9fa5;
  --teal-2: #19bdc1;
  --cyan: #eafaff;
  --blue: #2d6fd9;
  --navy: #0b2440;
  --line: #dbe8ee;
  --card: #ffffff;
  --soft: #f4fbfd;
  --orange: #ff9c45;
  --shadow: 0 18px 48px rgba(24, 68, 99, .12);
  --radius: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 17.6px;
  background: #fff;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 82% 10%, rgba(50, 169, 222, .18), transparent 24rem),
    radial-gradient(circle at 8% 48%, rgba(20, 187, 190, .08), transparent 18rem),
    linear-gradient(180deg, #fff 0%, #fbfeff 48%, #fff 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

[x-cloak] {
  display: none !important;
}

html.is-loading body {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.site-loader__inner {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.site-loader__logo {
  width: min(128px, 36vw);
  height: auto;
}

.site-loader__spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(11, 159, 165, .14);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: loader-spin .85s linear infinite;
}

.site-loader__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__spinner {
    animation: none;
    border-top-color: var(--teal);
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 8px 12px;
  color: #fff;
  background: var(--teal);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 92px;
}

.section-pad {
  padding: 100px 0 64px;
}

.hero.section-pad {
  padding: 0;
}

.hero.hero--has-text.section-pad {
  padding: 50px 0 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.has-shadow {
  box-shadow: 0 10px 28px rgba(24, 68, 99, .08);
}

.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 300px;
}

.brand img {
  width: 118px;
  height: auto;
}

.brand-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 230px;
  color: #6d7685;
  font-size: 15.5px;
  line-height: 1.5;
  padding-left: 18px;
  border-left: 1px solid #c9d4dc;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: #21344e;
  font-size: 16.5px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16.5px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn-large {
  min-width: 180px;
  min-height: 48px;
}

.btn-icon,
.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-icon svg,
.link-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 12px 24px rgba(11, 159, 165, .22);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .68);
  border-color: #8293a5;
}

.hero .btn-ghost {
  color: var(--hero-ghost-color, #fff);
  background: var(--hero-ghost-bg, rgba(255, 255, 255, .1));
  border-color: var(--hero-ghost-border, rgba(255, 255, 255, .52));
  backdrop-filter: blur(10px);
}

.hero .btn-ghost:hover {
  color: var(--hero-ghost-color, #fff);
  background: var(--hero-ghost-hover-bg, rgba(255, 255, 255, .2));
  border-color: var(--hero-ghost-hover-border, rgba(255, 255, 255, .75));
}

.btn-light {
  color: var(--teal);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  transition: min-height .45s ease;
}

.hero.hero--has-text {
  min-height: 670px;
  background: linear-gradient(90deg, #9ad9e3 0%, #c5ebf2 38%, #e3f5f9 72%, #f0faff 100%);
  --hero-badge-color: rgba(255, 255, 255, .92);
  --hero-badge-border: rgba(255, 255, 255, .3);
  --hero-badge-bg: rgba(255, 255, 255, .1);
  --hero-title-color: #fff;
  --hero-accent-color: var(--teal-2);
  --hero-accent-gradient: linear-gradient(75deg, #20C5D0, #86FBE4, #20C5D0);
  --hero-accent-fill: transparent;
  --hero-body-color: rgba(255, 255, 255, .82);
  --hero-body-shadow: 0 1px 8px rgba(0, 0, 0, .25);
  --hero-feature-color: rgba(255, 255, 255, .9);
  --hero-icon-color: var(--teal-2);
  --hero-icon-bg: rgba(255, 255, 255, .65);
  --hero-icon-border: rgba(255, 255, 255, .4);
  --hero-ghost-color: #fff;
  --hero-ghost-bg: rgba(255, 255, 255, .1);
  --hero-ghost-border: rgba(255, 255, 255, .52);
}

.hero.hero--fit-contain {
  min-height: 0;
  max-height: none;
  aspect-ratio: unset;
  background: transparent;
}

.hero-blur-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(32px) saturate(1.12) brightness(1.06);
  transform: scale(1.12);
  opacity: 0;
  transition: opacity .7s ease;
}

.hero-slide-blur.is-active {
  opacity: 1;
}

.hero.hero--fit-contain .hero-carousel {
  position: relative;
  inset: auto;
  z-index: 1;
  width: min(100%, 2000px);
  margin-inline: auto;
  aspect-ratio: 2000 / 860;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity .7s ease;
}

.hero-slide:not(.hero-slide--contain) {
  object-position: center center;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  animation: hero-zoom 10s ease-in-out forwards;
}

.hero-slide.hero-slide--contain {
  z-index: 2;
  object-fit: contain;
  object-position: center;
}

.hero-slide.hero-slide--contain.is-active {
  animation: none;
}

.hero-slide.is-active.is-entrance {
  animation:
    hero-iris 2.2s cubic-bezier(.22, 1, .36, 1) forwards,
    hero-zoom 16s ease-in-out 2.2s forwards;
}

@keyframes hero-iris {
  0% {
    clip-path: circle(3% at 50% 50%);
    transform: scale(1.2);
    filter: brightness(.45) blur(10px);
  }
  28% {
    filter: brightness(1) blur(0px);
  }
  100% {
    clip-path: circle(150% at 50% 50%);
    transform: scale(1.05);
    filter: brightness(1) blur(0px);
  }
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.13); }
}

.hero-overlay {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-carousel-nav-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(calc(100% - 48px), 2000px);
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
  padding: 0;
  pointer-events: none;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 4px;
  pointer-events: auto;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, width .2s ease;
}

.hero-carousel-dot.is-active {
  width: 28px;
  border-radius: 5px;
  background: #fff;
  transform: none;
}

.hero-carousel-btn {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s ease, transform .2s ease;
}

.hero-carousel-btn:hover {
  background: rgba(255, 255, 255, .24);
  transform: scale(1.08);
}

.hero-carousel-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hero-carousel-btn.prev::before {
  margin-left: -3px;
  transform: rotate(-135deg);
}

.hero-carousel-btn.next::before {
  margin-left: -7px;
  transform: rotate(45deg);
}

.act-banner-section {
  padding: 16px 0 0;
}

.act-banner-section + .section {
  padding-top: 40px;
}

.act-banner-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1400 / 223;
}

.act-banner-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.act-banner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(24, 68, 99, .14);
}

.act-banner-link:focus-visible {
  outline: 2px solid var(--primary, #184463);
  outline-offset: 3px;
}

.act-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.act-banner-slide.is-active {
  position: relative;
  opacity: 1;
}

.act-banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transition: transform .35s ease;
}

.act-banner-link:hover img {
  transform: scale(1.015);
}

.act-banner-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.act-banner-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.act-banner-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(24, 68, 99, .22);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, width .2s ease;
}

.act-banner-dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary, #184463);
}

.act-banner-btn {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(24, 68, 99, .16);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(24, 68, 99, .08);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.act-banner-btn:hover {
  background: rgba(24, 68, 99, .06);
  transform: scale(1.06);
}

.act-banner-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  content: "";
  border-top: 2px solid #184463;
  border-right: 2px solid #184463;
}

.act-banner-btn.prev::before {
  margin-left: -2px;
  transform: rotate(-135deg);
}

.act-banner-btn.next::before {
  margin-left: -6px;
  transform: rotate(45deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 28px;
}

.hero-grid-single {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-grid-single .hero-copy {
  width: 100%;
  max-width: 920px;
  padding-left: 0;
  margin-inline: auto;
}

.hero-grid-single .hero-copy::before {
  display: none;
}

.hero-grid-single .hero-text {
  margin-inline: auto;
}

.hero-grid-single .hero-actions,
.hero-grid-single .feature-row {
  justify-content: center;
}

/* Hero text children: hidden until is-entered triggers staggered reveal */
.hero-copy .hero-badge,
.hero-copy .hero-title,
.hero-copy .hero-text,
.hero-copy .hero-actions,
.hero-copy .feature-row {
  opacity: 0;
}

.hero-copy.is-entered .hero-badge   { animation: hero-text-in .75s cubic-bezier(.16,1,.3,1) .3s  both; }
.hero-copy.is-entered .hero-title   { animation: hero-text-in .75s cubic-bezier(.16,1,.3,1) .55s both; }
.hero-copy.is-entered .hero-text    { animation: hero-text-in .75s cubic-bezier(.16,1,.3,1) .75s both; }
.hero-copy.is-entered .hero-actions { animation: hero-text-in .75s cubic-bezier(.16,1,.3,1) .95s both; }
.hero-copy.is-entered .feature-row  { animation: hero-text-in .75s cubic-bezier(.16,1,.3,1) 1.15s both; }

@keyframes hero-text-in {
  from { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .hero-badge,
  .hero-copy .hero-title,
  .hero-copy .hero-text,
  .hero-copy .hero-actions,
  .hero-copy .feature-row {
    opacity: 1;
  }
  .hero-slide.is-active.is-entrance {
    animation: hero-zoom 10s ease-in-out forwards;
    clip-path: none;
    filter: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 28px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--teal-2), var(--teal));
  box-shadow: 0 0 18px rgba(25, 189, 193, .55);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1px solid var(--hero-badge-border, rgba(255, 255, 255, .3));
  background: var(--hero-badge-bg, rgba(255, 255, 255, .1));
  backdrop-filter: blur(12px);
  color: var(--hero-badge-color, rgba(255, 255, 255, .92));
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

.eyebrow {
  margin: 0 0 6px;
  color: #53677b;
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--hero-title-color, #fff);
}

.hero h1 strong {
  color: var(--hero-accent-color, var(--teal-2));
}

.hero-flow-text {
  display: inline;
  background-image: var(--hero-accent-gradient, linear-gradient(75deg, #20C5D0, #86FBE4, #20C5D0));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: var(--hero-accent-fill, transparent);
  color: var(--hero-accent-color, var(--teal-2));
  animation: var(--hero-accent-animate, hero-gradient-flow 4s ease-in-out);
}

@keyframes hero-gradient-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flow-text {
    animation: none;
    background-position: 0% 50%;
  }
}

.hero-title-line {
  display: block;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 32px;
  color: var(--hero-body-color, rgba(255, 255, 255, .82));
  font-size: 20px;
  font-weight: 500;
  text-shadow: var(--hero-body-shadow, 0 1px 8px rgba(0, 0, 0, .25));
}

.hero-actions,
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.feature-row {
  margin-top: 42px;
  gap: 26px;
}

.hero .hero-actions .btn {
  padding: 16px 32px;
  font-size: 17px;
}

.hero .feature-row {
  margin-top: 58px;
}

.mini-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #273f5a;
  font-size: 15.5px;
  font-weight: 800;
}

.hero .mini-feature {
  color: var(--hero-feature-color, rgba(255, 255, 255, .9));
}

.icon-dot,
.stat-icon,
.cta-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--teal);
  background: #e8f7f8;
}

.hero .icon-dot {
  color: var(--hero-icon-color, var(--teal-2));
  background: var(--hero-icon-bg, rgba(255, 255, 255, .65));
  border: 1px solid var(--hero-icon-border, rgba(255, 255, 255, .4));
  backdrop-filter: blur(8px);
}

.icon-dot svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 390px;
}

.hero-visual img {
  width: min(720px, 118%);
  max-width: none;
  margin-left: -18px;
  filter: drop-shadow(0 28px 50px rgba(37, 120, 183, .18));
  mix-blend-mode: multiply;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.3;
}

.section-head.compact {
  justify-content: flex-start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 15.5px;
  font-weight: 800;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.intro-section {
  position: relative;
  padding: 38px 0 44px;
  background:
    linear-gradient(180deg, rgba(244, 253, 254, .95) 0%, rgba(255, 255, 255, 1) 42%),
    radial-gradient(circle at 11% 16%, rgba(20, 184, 191, .12), transparent 26rem),
    radial-gradient(circle at 90% 88%, rgba(76, 132, 232, .08), transparent 24rem);
}

.intro-layout {
  display: grid;
  gap: 30px;
}

.intro-copy {
  position: relative;
  padding: 0 0 0 22px;
}

.intro-copy::before {
  position: absolute;
  top: .42em;
  bottom: .42em;
  left: 0;
  width: 5px;
  content: "";
  border-radius: 999px;
  background: var(--teal);
}

.intro-copy p {
  margin: 0;
  color: #26384f;
  font-size: 19.5px;
  line-height: 2;
}

.intro-copy .is-highlight {
  color: #079a9f;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 207, 53, .7);
  text-decoration-thickness: 7px;
  text-underline-offset: -2px;
}

.intro-steps {
  display: grid;
  gap: 18px;
}

.intro-step {
  --intro-main: var(--teal);
  --intro-soft: rgba(11, 159, 165, .12);
  --intro-border: rgba(11, 159, 165, .22);
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--intro-border);
  border-radius: 14px;
  background:
    radial-gradient(circle at 96% 18%, var(--intro-soft), transparent 9rem),
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9));
  box-shadow: 0 22px 46px rgba(21, 71, 96, .1);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.intro-step.tone-teal {
  --intro-main: #079a9f;
  --intro-soft: rgba(7, 154, 159, .13);
  --intro-border: rgba(7, 154, 159, .26);
}

.intro-step.tone-blue {
  --intro-main: #3f78d9;
  --intro-soft: rgba(63, 120, 217, .13);
  --intro-border: rgba(63, 120, 217, .25);
}

.intro-step.tone-green {
  --intro-main: #24a857;
  --intro-soft: rgba(36, 168, 87, .13);
  --intro-border: rgba(36, 168, 87, .25);
}

.intro-step:hover {
  border-color: color-mix(in srgb, var(--intro-main) 46%, white);
  box-shadow: 0 26px 54px rgba(21, 71, 96, .16);
  transform: translateX(4px);
}

.intro-step-media {
  overflow: hidden;
  min-height: 230px;
  background: var(--intro-soft);
}

.intro-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}

.intro-step:hover .intro-step-media img {
  transform: scale(1.04);
}

.intro-step-content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px 46px 34px 52px;
}

.intro-step-number {
  position: absolute;
  top: 22px;
  right: 26px;
  width: fit-content;
  color: color-mix(in srgb, var(--intro-main) 18%, transparent);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.intro-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 7px 20px 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--intro-main), color-mix(in srgb, var(--intro-main) 72%, white));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--intro-main) 24%, transparent);
}

.intro-title-row {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding-right: 84px;
}

.intro-tag-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
}

.intro-tag-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-step strong {
  color: var(--intro-main);
  font-size: 34px;
  line-height: 1.35;
  min-width: 0;
}

.intro-step-content > span:last-child {
  max-width: 760px;
  color: #182940;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.9;
}

.intro-detail-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0;
  padding: 0;
  color: #182940;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.85;
  list-style: none;
}

.intro-detail-list li {
  position: relative;
  padding-left: 28px;
}

.intro-detail-list li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #101d2d;
}

.intro-goal {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 14px;
  background: rgba(247, 252, 254, .96);
  box-shadow: 0 22px 46px rgba(9, 50, 84, .12);
}

.intro-goal strong {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 20px 24px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  white-space: pre-line;
  background: linear-gradient(135deg, #073763, #0a4d7c);
}

.intro-goal strong::first-line {
  color: #ffe629;
}

.intro-goal p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 22px 34px;
  color: #0b2d4d;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.42;
}

.detail-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.trigger-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
}

.trigger-arrow::before {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.news-card,
.outcome-card,
.download-card,
.competition-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(24, 68, 99, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card:hover,
.outcome-card:hover,
.competition-card:hover {
  border-color: rgba(11, 159, 165, .35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.download-card:hover {
  background: rgba(235, 249, 251, .45);
}

.news-card img {
  width: 100%;
  aspect-ratio: 4 / 2.25;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-image-link {
  display: block;
  overflow: hidden;
}

.news-card:hover img {
  transform: scale(1.04);
}

.news-card h3 a:hover {
  color: var(--teal);
}

.card-body {
  padding: 18px 18px 20px;
}

.card-kicker {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 14.5px;
  font-weight: 900;
}

.news-card h3,
.outcome-card h3,
.download-card h3,
.competition-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.news-card h3 {
  min-height: 52px;
}

.muted,
.outcome-card p,
.competition-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16.5px;
}

.competition-section {
  margin: 24px 0;
  padding: 5em 0;
  background: url("../img/aisle-bg.webp") center / cover no-repeat;
  border-block: 1px solid rgba(11, 159, 165, .14);
}

.competition-section .section-head {
  padding: 0 2px;
}

.competition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.competition-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 190px;
  padding: 28px 26px;
  color: inherit;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background-position: center, right center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.competition-card::after {
  display: none;
}

.competition-card::before {
  display: none;
}

.accent-teal {
  color: var(--teal);
}

.accent-orange {
  color: var(--orange);
  border-color: rgba(255, 156, 69, .52);
}

.accent-blue {
  color: #4e76c7;
  border-color: rgba(78, 118, 199, .48);
}

.competition-card.is-selected {
  border-color: currentColor;
  box-shadow: 0 18px 42px rgba(24, 68, 99, .16);
  transform: translateY(-4px);
}

.competition-card.is-selected::after {
  opacity: .2;
}

.competition-card h3,
.competition-card p,
.competition-card .text-link,
.competition-card .detail-trigger,
.competition-card .card-kicker {
  position: relative;
  z-index: 1;
}

.competition-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 12px;
}

.competition-logo {
  max-width: 168px;
  max-height: 48px;
  object-fit: contain;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 20, 35, .58);
  backdrop-filter: blur(8px);
}

.competition-modal {
  --detail-color: var(--teal);
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  border: 2px solid var(--detail-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 20, 35, .28);
}

.modal-inner {
  position: relative;
}

.modal-scroll {
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.detail-teal {
  --detail-color: var(--teal);
}

.detail-orange {
  --detail-color: var(--orange);
}

.detail-blue {
  --detail-color: #4e76c7;
}

.modal-close-bottom {
  display: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-head {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px 72px 24px 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.9)),
    linear-gradient(135deg, rgba(11, 159, 165, .1), #fff);
  border-bottom: 1px solid var(--line);
}

.modal-logo {
  max-width: 200px;
  max-height: 70px;
  object-fit: contain;
}

.modal-head h2 {
  margin: 0 0 4px;
  font-size: 29px;
  line-height: 1.35;
}

.modal-head p {
  margin: 0;
  color: var(--muted);
}

.detail-tabs {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbfc;
  box-shadow: 0 4px 12px rgba(24, 68, 99, .06);
  overflow-x: auto;
  scrollbar-width: none;
}
.detail-tabs::-webkit-scrollbar { display: none; }

.detail-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 0;
  min-height: 0;
  padding: 11px 12px;
  border: 1.5px solid #d8e4ed;
  border-radius: 99px;
  background: #fff;
  color: #5a6b80;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s, border-color .16s, box-shadow .16s;
  white-space: nowrap;
}

.detail-tabs button i[class^="ti"] {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.detail-tabs button:hover:not(.is-active) {
  background: #eef5fb;
  border-color: var(--detail-color);
  color: var(--detail-color);
}

.detail-tabs button.is-active {
  background: var(--detail-color);
  border-color: var(--detail-color);
  color: #fff;
  box-shadow: 0 3px 12px color-mix(in srgb, var(--detail-color) 35%, transparent);
}

.detail-panel {
  padding: 28px 34px 32px;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #fff 120px),
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--detail-color) 8%, transparent), transparent 42%);
}

/* ── Detail Prose：CMS 通用富文本格式 ── */
.detail-prose {
  color: #243647;
  font-size: 18px;
  line-height: 1.85;
  letter-spacing: .01em;
}

.detail-prose > *:first-child {
  margin-top: 0;
}

.detail-prose > *:last-child {
  margin-bottom: 0;
}

.detail-prose h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .02em;
}

.detail-prose h3::before {
  content: "";
  flex: 0 0 5px;
  width: 5px;
  height: 24px;
  border-radius: 99px;
  background: var(--detail-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--detail-color) 18%, transparent);
}

.detail-prose h3:first-child {
  margin-top: 0;
}

.detail-prose h4 {
  margin: 22px 0 0;
  padding: 13px 18px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--detail-color) 14%, #fff),
    color-mix(in srgb, var(--detail-color) 6%, #fff)
  );
  border: 1px solid color-mix(in srgb, var(--detail-color) 22%, #e8eef3);
  border-bottom: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .02em;
}

.detail-prose ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.detail-prose li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
  color: #243647;
  font-size: inherit;
  line-height: 1.75;
}

.detail-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--detail-color);
  transform: translateY(-50%);
  opacity: .85;
}

.detail-prose li:last-child {
  margin-bottom: 0;
}

.detail-prose p {
  margin: 0 0 14px;
}

.detail-prose a {
  color: var(--detail-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.detail-prose a:hover {
  color: color-mix(in srgb, var(--detail-color) 75%, #000);
}

.detail-prose strong {
  font-weight: 800;
  color: var(--ink);
}

/* Tab：申請方式 — 區塊卡片 */
.detail-prose--application h3 + p,
.detail-prose--application h3 + ul {
  margin-top: 0;
  margin-bottom: 6px;
  padding: 18px 22px;
  border: 1px solid color-mix(in srgb, var(--detail-color) 16%, #dce6ee);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(24, 68, 99, .05);
}

.detail-prose--application h3 + ul {
  padding-top: 16px;
  padding-bottom: 16px;
}

.detail-prose--application > p {
  margin: 18px 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--detail-color);
  letter-spacing: .03em;
}

.detail-prose--application > p + ul {
  margin-top: 0;
  margin-bottom: 14px;
  padding: 16px 22px;
  border: 1px solid #e3ebf2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(24, 68, 99, .04);
}

.detail-prose--application a[href^="http"],
.detail-prose--application a[href^="https"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 11px 22px;
  border-radius: 10px;
  background: var(--detail-color);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--detail-color) 32%, transparent);
  transition: transform .15s, box-shadow .15s;
}

.detail-prose--application a[href^="http"]:hover,
.detail-prose--application a[href^="https"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--detail-color) 38%, transparent);
}

/* Tab：重點時程 — 時間軸 */
.detail-prose--timeline ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.detail-prose--timeline li {
  margin: 0;
  padding: 20px 22px 20px 58px;
  border: 1px solid color-mix(in srgb, var(--detail-color) 18%, #e3ebf2);
  border-radius: 14px;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  box-shadow: 0 4px 16px rgba(24, 68, 99, .05);
}

.detail-prose--timeline li::before {
  top: 26px;
  left: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--detail-color) 16%, transparent);
}

.detail-prose--timeline li::after {
  content: "";
  position: absolute;
  left: 28px;
  top: calc(100% + 2px);
  width: 2px;
  height: 14px;
  background: color-mix(in srgb, var(--detail-color) 25%, #dce6ee);
}

.detail-prose--timeline li:last-child::after {
  display: none;
}

/* Tab：評選重點 — 分類卡片 */
.detail-prose--criteria > ul,
.detail-prose--criteria h3 + ul {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.detail-prose--criteria > ul > li,
.detail-prose--criteria h3 + ul > li {
  margin: 0;
  padding: 16px 20px 16px 24px;
  border: 1px solid color-mix(in srgb, var(--detail-color) 14%, #e3ebf2);
  border-left: 5px solid var(--detail-color);
  border-radius: 12px;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(24, 68, 99, .04);
}

.detail-prose--criteria > ul > li::before,
.detail-prose--criteria h3 + ul > li::before {
  display: none;
}

.detail-prose--criteria h3 + ul {
  margin-bottom: 20px;
}

.detail-prose--criteria h4 + ul {
  margin: 0 0 18px;
  padding: 14px 18px 16px;
  border: 1px solid color-mix(in srgb, var(--detail-color) 18%, #e3ebf2);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(24, 68, 99, .04);
}

.detail-prose--criteria h4 + ul li {
  font-size: 17px;
  font-weight: 500;
}

/* Tab：FAQ 答案 */
.detail-prose--answer {
  font-size: 17px;
  line-height: 1.85;
  color: #33495c;
}

.detail-prose--answer p {
  margin: 0;
}

.detail-apply-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed color-mix(in srgb, var(--detail-color) 28%, #dce6ee);
  display: flex;
  justify-content: center;
}

.detail-apply-btn {
  font-size: 19px !important;
  font-weight: 700 !important;
  padding: 16px 36px !important;
  min-width: min(100%, 280px);
  justify-content: center;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--detail-color) 34%, transparent);
}

/* Modal Benefits */
.modal-benefits-text {
  position: relative;
  margin: 14px 0 0;
  padding: 28px 14px 12px;
  border: 1px solid #3caa9f;
  border-radius: 8px;
  background: #edf8f7;
  color: #1b4a46;
  font-size: 14px;
  line-height: 1.7;
}

.modal-benefits-tag {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 3px 12px;
  border-radius: 7px 0 7px 0;
  background: #3caa9f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* Modal Downloads */
.modal-downloads {
  margin: 16px 34px 20px;
}

.modal-downloads-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.modal-download-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-download-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.modal-download-item:hover {
  background: var(--soft);
  border-color: var(--teal);
}

.modal-download-name {
  font-size: 14px;
  font-weight: 500;
}

.modal-download-size {
  font-size: 12.5px;
  color: var(--muted);
}

.modal-download-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Q&A Accordion */
.detail-notes,
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-entry {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qa-category {
  margin: 24px 0 6px;
  padding: 10px 14px;
  border-left: 4px solid var(--detail-color);
  border-radius: 0 10px 10px 0;
  background: color-mix(in srgb, var(--detail-color) 10%, #fff);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
}

.qa-category:first-child {
  margin-top: 0;
}

.qa-item {
  overflow: hidden;
  border: 1px solid #e3ebf2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(24, 68, 99, .04);
  transition: border-color .2s, box-shadow .2s;
}

.qa-item.is-open {
  border-color: color-mix(in srgb, var(--detail-color) 35%, #e3ebf2);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--detail-color) 12%, transparent);
}

.qa-question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  transition: color .15s;
}

.qa-qmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  margin-top: 1px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--detail-color) 14%, #fff);
  color: var(--detail-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.qa-item.is-open .qa-qmark {
  background: var(--detail-color);
  color: #fff;
}

.qa-question-text {
  padding-top: 4px;
}

.qa-question:hover {
  color: var(--detail-color);
}

.qa-question:hover .qa-qmark {
  background: color-mix(in srgb, var(--detail-color) 22%, #fff);
}

.qa-arrow {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease, margin .2s ease;
  opacity: .55;
}

.qa-item.is-open .qa-arrow {
  transform: rotate(-135deg);
  margin-top: 14px;
  opacity: 1;
  color: var(--detail-color);
}

.qa-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.qa-answer-wrap.is-open {
  grid-template-rows: 1fr;
}

.qa-answer {
  overflow: hidden;
  padding: 0 20px;
}

.qa-answer-wrap.is-open .qa-answer {
  padding: 0 20px 20px 66px;
}

.qa-answer .detail-prose,
.qa-answer .detail-prose--answer {
  padding: 16px 18px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--detail-color) 6%, #f8fbfd);
  border: 1px solid color-mix(in srgb, var(--detail-color) 12%, #e8eef3);
}

@media (prefers-reduced-motion: reduce) {
  .qa-answer-wrap {
    transition: none;
  }

  .qa-answer-wrap:not(.is-open) .qa-answer {
    display: none;
  }
}

.outcome-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
}

.stats-panel {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: 4px;
}

.stat-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 14px;
  align-items: center;
}

.stat-icon {
  grid-row: span 2;
  font-size: 24px;
  line-height: 1;
}

.stat-icon svg,
.cta-icon svg,
.download-btn svg,
.file-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-item strong {
  color: var(--teal);
  font-size: 33px;
  line-height: 1;
}

.stat-item span:last-child {
  color: #5d6d80;
  font-size: 16.5px;
  font-weight: 700;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.outcome-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}

.outcome-image-link {
  display: block;
  overflow: hidden;
}

.outcome-card:hover img {
  transform: scale(1.035);
}

.outcome-card h3 a:hover {
  color: var(--teal);
}

.download-list {
  display: grid;
  gap: 0;
  border-top: 2px solid #6f7d88;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 90px 92px;
  gap: 18px;
  align-items: center;
  min-height: auto;
  padding: 16px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.file-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 11px 0 8px;
  color: #fff;
  border-radius: 999px;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.file-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.file-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.type-zip {
  background: #0b9fa5;
}

.type-pdf {
  background: #d85b50;
}

.type-docx {
  background: #2d6fd9;
}

.type-ppt {
  background: #f28b32;
}

.download-card h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  min-height: 0;
  font-size: 20px;
}

.download-card .file-badge {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
}

.download-size {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  color: var(--muted);
  font-size: 15.5px;
  white-space: nowrap;
}

.download-btn {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 6px;
  min-width: 74px;
  height: 34px;
  padding: 0 12px;
  color: var(--teal);
  border: 1px solid rgba(11, 159, 165, .28);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.download-btn:hover {
  color: #fff;
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 8px 18px rgba(11, 159, 165, .24);
  transform: translateY(-1px);
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(11, 159, 165, .18);
}

.download-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.download-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.partners-section {
  padding-top: 10px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  color: #9aa8b6;
  border: 1px dashed #c8d8df;
  border-radius: 8px;
  background: rgba(244, 251, 253, .72);
  font-size: 16.5px;
  font-weight: 800;
}

.partner-logo img {
  max-width: 180px;
  max-height: 58px;
  object-fit: contain;
}

.section-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 52px 28px;
  border: 1px dashed #c8d8df;
  border-radius: 16px;
  background: rgba(244, 251, 253, .72);
  color: #8a9bab;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-empty-state--partners {
  min-height: 120px;
}

.page-view {
  min-height: 62vh;
  padding-bottom: 56px;
}

.page-banner {
  margin-bottom: 34px;
  padding: 46px 0 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 45, 73, .88), rgba(11, 159, 165, .78)),
    url("../img/banner-01.webp") center / cover no-repeat;
}

.page-banner h1 {
  max-width: 900px;
  margin: 10px 0 10px;
  font-size: clamp(33px, 4.4vw, 51px);
  line-height: 1.25;
}

.page-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18.7px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, .86);
  font-size: 15.5px;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb a::after,
.breadcrumb span:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: rgba(255, 255, 255, .68);
}

.page-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-head h1,
.article-page h1 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(33px, 4.4vw, 49px);
  line-height: 1.25;
}

.page-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18.7px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-bar button {
  min-width: 104px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--teal);
  border: 1px solid rgba(11, 159, 165, .28);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(11, 159, 165, .18);
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 68, 99, .06);
}

.blog-thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.blog-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-row:hover .blog-thumb img {
  transform: scale(1.035);
}

.blog-row h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.4;
}

.blog-row h2 a:hover {
  color: var(--teal);
}

.blog-row p {
  margin: 0 0 10px;
  color: var(--muted);
}

.list-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 18px;
  color: #fff;
  border-radius: 999px;
  background: var(--teal);
  font-size: 15.5px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(11, 159, 165, .18);
}

.list-action:hover {
  background: #07858a;
  transform: translateY(-1px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 15.5px;
}

.article-page {
  max-width: 860px;
  margin-inline: auto;
}

.article-cover {
  width: 100%;
  margin: 24px 0;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-content {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.article-content p {
  margin: 0 0 18px;
  color: #293b50;
  font-size: 20px;
  line-height: 1.9;
}

.article-actions {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.cta-section {
  padding-top: 8px;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(480px, 1.1fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: 42px 48px;
  color: #fff;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 20px 46px rgba(11, 159, 165, .2);
}

.cta-band::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 300px;
  height: 210px;
  content: "";
  opacity: .45;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, .04), inset 0 0 0 36px rgba(255, 255, 255, .04), inset 0 0 0 54px rgba(255, 255, 255, .04);
}

.cta-band h2 {
  max-width: 520px;
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.4;
}

.cta-band p {
  margin: 0 0 22px;
  font-weight: 700;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.cta-step {
  position: relative;
  text-align: center;
}

.cta-step:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: -22px;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  opacity: .9;
}

.cta-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .72);
  background: transparent;
  font-weight: 900;
}

.cta-icon svg {
  width: 34px;
  height: 34px;
}

.cta-step strong,
.cta-step span:last-child {
  display: block;
}

.cta-step strong {
  font-size: 18px;
  line-height: 1.45;
}

.cta-step span:last-child {
  margin-top: 2px;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  background:
    linear-gradient(90deg, rgba(7, 24, 44, .96), rgba(4, 92, 105, .9)),
    url("../img/generated/footer-network-bg.png") center / cover no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(520px, 1.5fr) minmax(190px, .55fr);
  gap: 42px;
  align-items: start;
  padding: 58px 0 42px;
}

.footer-logo {
  width: 136px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 9px;
  font-size: 16px;
}

.footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, .86);
}

.footer-organizer {
  margin-top: 20px;
}

.footer-organizer,
.footer-contact,
.footer-line {
  position: relative;
  z-index: 1;
}

.tca-logo {
  max-height: 68px;
  object-fit: contain;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-person {
  min-height: 172px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
}

.contact-person strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 21px;
}

.contact-person span {
  display: block;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.85;
}

.contact-field {
  margin-top: 8px;
}

.contact-field span {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.contact-person a {
  display: block;
  color: #fff;
  font-size: inherit;
  font-weight: 800;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 15px;
  font-weight: 900;
}

.line-note {
  max-width: 220px;
  margin-top: 0 !important;
  color: #fff;
  text-align: center;
  font-weight: 900;
  line-height: 1.65;
}

.footer-line {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.footer-line .line-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  min-height: 44px;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: #06c755;
  box-shadow: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-line .line-add-btn:hover {
  color: #fff;
  background: #05b34c;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(6, 199, 85, .32);
}

.footer-line .line-add-btn:active {
  transform: translateY(0);
}

.qr-box {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 6px;
  box-shadow: none;
  overflow: hidden;
}

.qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.footer-browser-hint {
  color: rgba(255, 255, 255, .45);
}

.top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 15;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 12px 24px rgba(11, 159, 165, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  cursor: pointer;
  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s ease,
    box-shadow .2s ease;
}

.top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-button.is-visible:hover {
  box-shadow: 0 16px 30px rgba(11, 159, 165, .38);
  transform: translateY(-3px);
}

.top-button.is-visible:active {
  box-shadow: 0 8px 18px rgba(11, 159, 165, .28);
  transform: translateY(-1px);
}

.top-button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.top-button::before {
  position: absolute;
  top: 19px;
  left: 16px;
  width: 16px;
  height: 16px;
  content: "";
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .top-button {
    transform: none;
    transition: opacity .2s ease, visibility .2s ease, box-shadow .2s ease;
  }

  .top-button.is-visible:hover,
  .top-button.is-visible:active {
    transform: none;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .brand {
    min-width: 240px;
  }

  .brand-tagline {
    display: none;
  }

}

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-panel {
    display: grid;
    gap: 10px;
    padding: 0 24px 22px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(24, 68, 99, .08);
  }

  .mobile-panel a {
    padding: 10px 0;
    font-weight: 800;
  }

  .hero-grid,
  .intro-layout,
  .outcome-layout,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(400px, 70vh, 660px);
  }

  .feature-row {
    margin-top: 30px;
  }

  .intro-steps {
    grid-template-columns: 1fr;
  }

  .intro-step {
    min-height: auto;
    grid-template-columns: minmax(220px, .75fr) minmax(0, 1fr);
  }

  .intro-step-media {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .download-card {
    grid-template-columns: minmax(0, 1fr) 110px 72px 82px;
  }

  .competition-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 26px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .footer-line {
    justify-items: center;
    justify-self: center;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .line-note {
    max-width: 280px;
    text-align: center;
  }

  .footer-line .line-add-btn {
    max-width: 200px;
  }

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

  .blog-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .page-banner {
    padding: 38px 0 34px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 48px 0;
  }

  .section-pad {
    padding: 52px 0 40px;
  }

  .hero.section-pad {
    padding: 0;
  }

  .hero.hero--has-text.section-pad {
    padding: 52px 0 88px;
  }

  .hero.hero--fit-contain {
    max-height: none;
  }

  .hero.hero--fit-contain .hero-carousel {
    width: 100%;
  }

  .hero-slide:not(.hero-slide--contain) {
    object-position: center center;
  }

  .hero-carousel-nav {
    width: min(calc(100% - 32px), 2000px);
  }

  .act-banner-section {
    padding: 12px 0 0;
  }

  .act-banner-section + .section {
    padding-top: 32px;
  }

  .act-banner-carousel {
    border-radius: 12px;
    aspect-ratio: 1400 / 223;
  }

  .act-banner-link,
  .act-banner-slide img {
    border-radius: 12px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 106px;
  }

  .hero-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .hero-carousel-dots {
    bottom: 22px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy {
    padding-left: 20px;
  }

  .hero-text {
    font-size: 17.5px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }

  .feature-row,
  .stats-panel,
  .cta-steps {
    grid-template-columns: 1fr;
  }

  .feature-row {
    display: grid;
    justify-items: center;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-head h2 {
    font-size: 26px;
  }

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

  .competition-section {
    margin: 12px 0;
    padding: 36px 0;
  }

  .intro-layout {
    gap: 22px;
  }

  .intro-copy {
    padding: 22px 20px 24px;
  }

  .intro-step {
    grid-template-columns: 1fr;
  }

  .intro-step-media {
    aspect-ratio: 16 / 10;
    min-height: 190px;
  }

  .intro-step-content {
    padding: 24px 22px 28px;
  }

  .intro-step-number {
    top: 18px;
    right: 18px;
    font-size: 42px;
  }

  .intro-tag {
    min-height: 40px;
    font-size: 21px;
  }

  .intro-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-right: 54px;
  }

  .intro-step strong {
    font-size: 27px;
  }

  .intro-step-content span:last-child {
    font-size: 17.5px;
  }

  .intro-detail-list {
    font-size: 17.5px;
  }

  .intro-goal {
    grid-template-columns: 1fr;
    background: rgba(247, 252, 254, .96);
  }

  .intro-goal strong {
    min-height: 88px;
    font-size: 25px;
  }

  .intro-goal p {
    padding: 24px 22px 28px;
    font-size: 22px;
  }

  .intro-copy p,
  .article-content p {
    font-size: 17.5px;
  }

  .blog-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .page-banner {
    margin-bottom: 24px;
    padding: 30px 0;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .filter-bar button {
    min-width: auto;
    flex: 1 1 120px;
  }

  .article-cover {
    aspect-ratio: 4 / 3;
  }

  .download-card {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px 14px;
  }

  .download-card h3 {
    grid-column: 1 / -1;
    font-size: 17px;
  }

  .download-card .file-badge {
    grid-column: 1;
    grid-row: 2;
  }

  .download-size {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
  }

  .download-btn {
    grid-column: 3;
    grid-row: 2;
    min-width: 68px;
    padding: 0 10px;
  }

  .detail-tabs {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 6px;
  }

  .detail-tabs button {
    flex: 1 1 calc(50% - 3px);
    min-width: calc(50% - 3px);
    padding: 9px 10px;
    font-size: 13px;
    white-space: normal;
    line-height: 1.35;
  }

  .detail-panel {
    padding: 20px 18px 26px;
  }

  .detail-prose {
    font-size: 17px;
  }

  .detail-prose h3 {
    font-size: 19px;
  }

  .detail-prose h4 {
    font-size: 16px;
    padding: 11px 14px;
  }

  .detail-prose--timeline li {
    padding: 16px 16px 16px 48px;
    font-size: 17px;
  }

  .detail-prose--timeline li::before {
    left: 16px;
    top: 22px;
  }

  .detail-prose--application h3 + p,
  .detail-prose--application h3 + ul,
  .detail-prose--application > p + ul {
    padding: 14px 16px;
  }

  .qa-question {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 14px 16px;
    font-size: 16.5px;
  }

  .qa-qmark {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .qa-answer-wrap.is-open .qa-answer {
    padding: 0 14px 16px 14px;
  }

  .qa-answer .detail-prose,
  .qa-answer .detail-prose--answer {
    padding: 14px 16px;
    font-size: 16px;
  }

  .qa-category {
    font-size: 14.5px;
    padding: 8px 12px;
  }

  .detail-apply-btn {
    font-size: 17px !important;
    padding: 14px 28px !important;
    width: 100%;
  }

  .modal-backdrop {
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .competition-modal {
    max-height: calc(100svh - 100px);
  }

  .modal-scroll {
    max-height: calc(100svh - 100px);
  }

  .modal-downloads {
    margin-inline: 22px;
  }

  .modal-close {
    display: none;
  }

  .modal-close-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 10px 28px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 99px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .04em;
  }

  .modal-head {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 22px 20px;
  }

  .modal-logo {
    max-width: 180px;
  }

  .news-card h3 {
    min-height: 0;
  }

  .competition-card,
  .cta-band {
    padding: 24px;
  }

  .cta-band h2 {
    font-size: 24px;
  }

  .cta-step:not(:last-child)::after {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }

  .top-button {
    right: 16px;
    bottom: 16px;
  }
}
