:root {
  --bg: #f6f8f4;
  --text: #102418;
  --muted: #3e564a;
  --primary: #0f6f5f;
  --primary-deep: #0b5044;
  --accent: #ed9f2d;
  --surface: #ffffff;
  --line: #d9e2dd;
  --shadow: 0 20px 55px rgba(15, 111, 95, 0.12);
}

html.theme-dark {
  --bg: #091712;
  --text: #e5f3ed;
  --muted: #9cb4aa;
  --primary: #2ab395;
  --primary-deep: #19826b;
  --accent: #f0b750;
  --surface: #10231c;
  --line: #254339;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

html.theme-switching body,
html.theme-switching .site-header,
html.theme-switching .card,
html.theme-switching .service-card,
html.theme-switching .blog-card,
html.theme-switching .why-card,
html.theme-switching .program-master,
html.theme-switching .consult-form,
html.theme-switching .btn,
html.theme-switching input,
html.theme-switching select,
html.theme-switching .toc-links a,
html.theme-switching .faq-list-full details,
html.theme-switching .site-footer {
  transition:
    background-color 0.45s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.45s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background:
    radial-gradient(130% 90% at 10% 0%, #dff4ed 0, transparent 56%),
    radial-gradient(95% 75% at 92% 0%, #ffe9c4 0, transparent 60%),
    radial-gradient(120% 70% at 50% 100%, #e3f2ff 0, transparent 65%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100%;
}

html.native-scroll-mode {
  scroll-behavior: auto;
  overflow-y: auto !important;
  height: auto !important;
}

body.native-scroll-mode {
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
}

html.native-scroll-mode .site-header,
html.native-scroll-mode .site-header nav,
html.native-scroll-mode .toc-links,
html.native-scroll-mode .cert-track,
html.native-scroll-mode .industry-track {
  touch-action: auto;
}

html.smooth-scroll-active {
  scroll-behavior: auto;
}

body.smooth-scroll-active {
  overflow-y: visible;
}

html.smooth-scroll-touch .smooth-scroll-content {
  will-change: auto;
}

html.native-scroll-mode .smooth-scroll-viewport {
  display: none !important;
}

html.mobile-scroll-active,
body.mobile-scroll-active {
  overflow: hidden !important;
  height: 100dvh !important;
  overscroll-behavior: none;
}

.mobile-scroll-viewport {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
}

.mobile-scroll-content {
  min-height: 100%;
}

.smooth-scroll-viewport {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.smooth-scroll-content {
  position: relative;
  min-height: 100%;
  will-change: transform;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.startup-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  isolation: isolate;
  display: grid;
  place-items: center;
  pointer-events: auto;
  cursor: progress;
  opacity: 0;
  transition: opacity 0.42s ease, visibility 0.42s ease;
  animation: startupOverlayIn 0.48s ease forwards;
}

.startup-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 50% 45%, rgba(255, 255, 255, 0.93), rgba(246, 248, 244, 0.78) 56%, rgba(246, 248, 244, 0.24));
  backdrop-filter: blur(8px) saturate(1.08);
  -webkit-backdrop-filter: blur(8px) saturate(1.08);
  opacity: 1;
  transition: opacity 0.56s ease;
  will-change: opacity;
}

.startup-loader.is-finished {
  opacity: 0;
  visibility: hidden;
}

.startup-loader.is-finishing::before {
  opacity: 0.52;
}

.startup-loader.is-finished::before {
  opacity: 0;
}

.startup-loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 14px;
  transform: translate3d(0, 8px, 0) scale(0.96);
  opacity: 0;
  transition: transform 0.72s cubic-bezier(0.2, 0.95, 0.25, 1), opacity 0.52s ease;
  animation: startupContentIn 0.52s cubic-bezier(0.2, 0.9, 0.24, 1) 0.08s forwards;
}

.startup-logo {
  --loader-dx: 0px;
  --loader-dy: 0px;
  --loader-scale: 1;
  width: clamp(86px, 14vw, 116px);
  height: clamp(86px, 14vw, 116px);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 6px rgba(15, 111, 95, 0.14),
    0 26px 45px rgba(8, 69, 59, 0.28);
  object-fit: cover;
  transform-origin: center center;
  animation: startupLogoPulse 1.1s ease-in-out infinite alternate;
}

.startup-progress {
  width: min(280px, 72vw);
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.16);
  border: 1px solid rgba(15, 111, 95, 0.2);
  overflow: hidden;
  position: relative;
}

.startup-progress::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38%;
  left: -42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 111, 95, 0), #1ea38b, rgba(237, 159, 45, 0.95));
  animation: startupBarMove 1.05s ease-in-out infinite;
}

.startup-loader.is-finishing .startup-progress {
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 0.18s ease, transform 0.2s ease;
}

.startup-loader.is-finishing .startup-loader-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: none;
  animation: none;
}

.startup-loader.is-finishing .startup-logo {
  animation: startupLogoFlySmooth 0.74s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

html.js-enabled body.preloader-active:not(.startup-ready) .site-header {
  opacity: 1;
  filter: saturate(0.96);
  transition: none !important;
}

html.js-enabled body.preloader-active:not(.startup-ready) .site-header .brand,
html.js-enabled body.preloader-active:not(.startup-ready) .site-header nav,
html.js-enabled body.preloader-active:not(.startup-ready) .site-header .mobile-menu-btn,
html.js-enabled body.preloader-active:not(.startup-ready) .site-header .header-control-group,
html.js-enabled body.preloader-active:not(.startup-ready) .site-header .header-control-group * {
  pointer-events: none !important;
}

html.js-enabled body.preloader-active:not(.startup-ready) .brand-logo {
  opacity: 0;
}

.site-header.header-intro {
  animation: headerIntroIn 0.62s cubic-bezier(0.22, 0.9, 0.24, 1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 111, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 111, 95, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: #8fd8c7;
  top: -60px;
  left: -70px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #ffd89c;
  bottom: -80px;
  right: -90px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: #a8cfff;
  top: 42%;
  left: 42%;
  opacity: 0.22;
}

body.perf-lite .bg-orb {
  display: none;
}

body.perf-lite .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    width 0.14s linear,
    padding 0.14s linear,
    top 0.14s linear,
    border-radius 0.14s linear,
    transform 0.14s linear,
    box-shadow 0.18s ease;
}

body.perf-lite .hero-visual,
body.perf-lite .hero-cta,
body.perf-lite .site-header nav .btn.btn-sm {
  animation: none !important;
}

body.perf-lite .card:hover,
body.perf-lite .service-card:hover,
body.perf-lite .blog-card:hover,
body.perf-lite .industry-card:hover,
body.perf-lite .panel-journey a:hover {
  transform: none;
}

body.perf-lite .industry-track {
  will-change: auto;
}

body.perf-lite .reveal.reveal-pending {
  transition-duration: 0.35s;
  transform: translateY(12px);
}

.site-header,
main,
.site-footer {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  --island-progress: 0;
  --island-gap-max: 220px;
  --island-shrink-max: 0.18;
  --island-radius-max: 900px;
  --island-pad-y-max: 4px;
  --island-pad-x-max: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:
    calc(11px - (var(--island-pad-y-max) * var(--island-progress)))
    calc(14px - (var(--island-pad-x-max) * var(--island-progress)));
  position: sticky;
  top: calc(10px - (3px * var(--island-progress)));
  left: 0;
  right: 0;
  transform:
    translateY(calc(2px * var(--island-progress)))
    scale(calc(1 - (var(--island-shrink-max) * var(--island-progress))));
  transform-origin: center top;
  width: min(1040px, calc(100% - (40px + (var(--island-gap-max) * var(--island-progress)))));
  margin-inline: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(243, 250, 246, 0.72));
  border: 1px solid rgba(205, 224, 216, 0.95);
  border-radius: calc(22px + (var(--island-radius-max) * var(--island-progress)));
  box-shadow: 0 14px 30px rgba(9, 67, 57, 0.12);
  transition:
    width 0.22s linear,
    padding 0.22s linear,
    top 0.22s linear,
    border-radius 0.22s linear,
    box-shadow 0.28s ease,
    transform 0.22s linear,
    background 0.35s ease;
  will-change: transform, box-shadow;
  z-index: 30;
  pointer-events: none;
  touch-action: pan-y;
}

.site-header .brand,
.site-header nav,
.site-header .mobile-menu-btn,
.site-header .header-control-group,
.site-header .header-control-group * {
  pointer-events: auto;
}

.site-header.island {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 240, 0.85));
  box-shadow:
    0 16px 38px rgba(7, 67, 57, 0.2),
    0 0 0 1px rgba(176, 221, 206, 0.85) inset;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: calc(8px - (2px * var(--island-progress)));
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand-text {
  font-size: calc(1.02rem - (0.12rem * var(--island-progress)));
  white-space: nowrap;
  overflow: hidden;
  max-width: 148px;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition:
    font-size 0.2s linear,
    opacity 0.24s ease,
    transform 0.24s ease,
    max-width 0.26s ease;
}

.site-header.compact .brand-text {
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px) scale(0.9);
}

.site-header.compact .brand {
  gap: 0;
}

.brand-logo {
  width: calc(40px - (8px * var(--island-progress)));
  height: calc(40px - (8px * var(--island-progress)));
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e6eeea;
  box-shadow: 0 8px 20px rgba(16, 36, 24, 0.15);
  transition: width 0.2s linear, height 0.2s linear, opacity 0.18s ease;
}

nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  transition: gap 0.22s linear;
}

.site-header.compact nav {
  gap: 8px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: calc(0.9rem - (0.04rem * var(--island-progress)));
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.22s ease;
}

nav a:not(.btn) {
  position: relative;
  padding: 7px 9px;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    transform 0.22s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

nav a:hover {
  color: var(--primary-deep);
  transform: translateY(-1px);
}

nav a:not(.btn):hover {
  background: rgba(15, 111, 95, 0.08);
}

nav a.is-current {
  color: var(--primary-deep);
  background: linear-gradient(145deg, rgba(15, 111, 95, 0.12), rgba(237, 159, 45, 0.14));
  box-shadow:
    inset 0 0 0 1px rgba(164, 207, 193, 0.95),
    0 10px 18px rgba(13, 77, 66, 0.08);
}

.header-control-group {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 126px;
  max-width: 126px;
  padding: 3px 6px;
  border-radius: 999px;
  border: 1px solid rgba(163, 205, 191, 0.7);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(236, 247, 242, 0.78));
  overflow: hidden;
  transform-origin: right center;
  transition:
    max-width 0.28s ease,
    padding 0.28s ease,
    opacity 0.22s ease,
    transform 0.28s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.24s ease;
}

.header-tool {
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.theme-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(159, 207, 192, 0.95);
  background: radial-gradient(circle at 30% 30%, #fff8df 0%, #ffe4a7 45%, #ffd074 100%);
  box-shadow: 0 10px 18px rgba(13, 77, 66, 0.2);
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 22px rgba(11, 80, 68, 0.24);
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #0f6554;
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.theme-icon-moon {
  opacity: 0;
  transform: translateY(8px) scale(0.8) rotate(-18deg);
}

.theme-toggle.is-dark {
  background: radial-gradient(circle at 30% 30%, #20395c 0%, #14253d 46%, #0d1728 100%);
  border-color: rgba(106, 139, 191, 0.95);
}

.theme-toggle.is-dark .theme-icon-sun {
  opacity: 0;
  transform: translateY(-8px) scale(0.8) rotate(22deg);
}

.theme-toggle.is-dark .theme-icon-moon {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
  color: #d3e2ff;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
}

.lang-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: 72px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(165, 208, 194, 0.95);
  background: linear-gradient(145deg, #f9fffc, #eaf7f2);
  box-shadow: inset 0 1px 2px rgba(17, 49, 40, 0.08);
  overflow: hidden;
}

.lang-option {
  z-index: 2;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f6f5f;
}

.lang-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 31px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f6f5f, #149b82);
  box-shadow:
    0 8px 14px rgba(14, 88, 74, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.54) inset;
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 0.3s ease;
}

.lang-toggle.is-en .lang-toggle-thumb {
  transform: translateX(34px);
  background: linear-gradient(145deg, #176d9f, #1b8ac7);
}

.lang-toggle:hover .lang-toggle-thumb {
  box-shadow:
    0 10px 18px rgba(14, 88, 74, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.62) inset;
}

.mobile-menu-btn {
  display: none;
  border: 1px solid #c9d8d0;
  background: linear-gradient(145deg, #ffffff, #f1f8f5);
  color: var(--primary-deep);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow:
    0 0 0 2px rgba(15, 111, 95, 0.1),
    0 8px 20px rgba(15, 111, 95, 0.18);
}

.mobile-menu-btn .menu-glyph,
.mobile-menu-btn .menu-glyph::before,
.mobile-menu-btn .menu-glyph::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.2s ease, background-color 0.2s ease;
}

.mobile-menu-btn .menu-glyph {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-btn .menu-glyph::before {
  transform: translate(-50%, -6px);
}

.mobile-menu-btn .menu-glyph::after {
  transform: translate(-50%, 6px);
}

.mobile-menu-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  border: 1px solid rgba(141, 225, 203, 0.75);
  opacity: 0.8;
}

.mobile-menu-btn:hover {
  transform: translateY(-1px);
}

.mobile-menu-btn.active {
  border-color: #0f6f5f;
  box-shadow:
    0 0 0 3px rgba(46, 180, 141, 0.2),
    0 10px 28px rgba(15, 111, 95, 0.35);
}

.mobile-menu-btn.active .menu-glyph {
  background: transparent;
}

.mobile-menu-btn.active .menu-glyph::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.mobile-menu-btn.active .menu-glyph::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu-btn.active::after {
  animation: mobileGlow 1.1s ease-in-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
  gap: 36px;
  padding: 50px 0 30px;
}

.hero-content {
  max-width: 840px;
  padding-right: clamp(10px, 2vw, 42px);
}

.hero-visual {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

@media (min-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.88fr);
    gap: 30px;
  }

  .hero-content {
    min-width: 0;
    padding-right: clamp(8px, 1.6vw, 30px);
  }

  .hero h1 {
    max-width: 19ch;
  }

  .hero .accent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06em;
    margin-top: 0.18em;
    padding-right: clamp(18px, 3vw, 72px);
    white-space: normal;
  }

  .hero .accent-label {
    display: block;
    font-size: 0.78em;
    line-height: 1.05;
  }

  .hero .hero-typed {
    display: inline-block;
    min-width: 0;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  color: #0b5e50;
  font-weight: 800;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1,
h2 {
  font-family: "Be Vietnam Pro", sans-serif;
}

h1 {
  font-size: clamp(1.95rem, 4.3vw, 3.35rem);
  max-width: 26ch;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
  color: #0d3b32;
  text-shadow: 0 12px 28px rgba(9, 57, 49, 0.12);
}

.hero-text {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-points {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.hero-points li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #244a43;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4em;
  border-radius: 999px;
  background: linear-gradient(145deg, #ed9f2d, #0f6f5f);
  box-shadow: 0 0 0 4px rgba(15, 111, 95, 0.08);
}

.hero-text-followup {
  max-width: 720px;
  margin-bottom: 10px;
}

.hero-text-conclusion {
  max-width: 720px;
  margin-top: 6px;
  margin-bottom: 24px;
  color: #123428;
  font-weight: 700;
}

.accent {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.26em;
  white-space: nowrap;
}

.accent-label {
  flex: 0 0 auto;
  color: #e7a63a;
  text-shadow: none;
}

.hero-typed {
  color: #e49b30;
  text-shadow: 0 8px 20px rgba(237, 159, 45, 0.22);
}

.hero-typed {
  position: relative;
  display: inline-block;
  min-width: 10.5ch;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.hero-typed.hero-typed-live {
  opacity: 1;
}

.hero-typed::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 0.1em;
  vertical-align: -0.08em;
  border-radius: 999px;
  background: #e8af44;
  animation: typedCaretBlink 0.9s ease-in-out infinite;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 {
    background: linear-gradient(140deg, #0d3b32 0%, #0f6f5f 46%, #176d9f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .hero-typed {
    background: linear-gradient(120deg, #ed9f2d 0%, #f0bf54 50%, #f8d589 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  html.theme-dark h1 {
    background: linear-gradient(140deg, #e7f8f2 0%, #79e1c6 45%, #8ac5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

html.js-enabled body.preloader-active:not(.startup-ready) .hero-typed {
  opacity: 0;
}

html.theme-dark .accent-label {
  color: #f2c45d;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-signal-strip {
  max-width: 760px;
  margin: -2px 0 20px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 249, 245, 0.9)),
    radial-gradient(120% 120% at 0 0, rgba(237, 159, 45, 0.14) 0, transparent 45%);
  box-shadow: 0 12px 26px rgba(11, 80, 68, 0.08);
}

.hero-signal-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 10px 18px;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: heroSignalScroll 18s linear infinite;
}

.hero-signal-track span {
  white-space: nowrap;
}

.hero-toc {
  max-width: 760px;
}

.hero-toc .eyebrow {
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary), var(--primary-deep));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 26px rgba(11, 80, 68, 0.22);
}

.hero-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(237, 159, 45, 0.34),
    0 16px 34px rgba(15, 111, 95, 0.28);
  animation: heroCtaPulse 2.2s ease-in-out infinite;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 44%;
  height: 320%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
  transform: rotate(20deg);
  animation: heroCtaSweep 2.4s linear infinite;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(237, 159, 45, 0.72);
  z-index: -1;
  animation: heroCtaRing 2.2s ease-out infinite;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.92rem;
}

.site-header nav .btn.btn-sm {
  position: relative;
  isolation: isolate;
  padding:
    calc(9px - (1px * var(--island-progress)))
    calc(16px - (3px * var(--island-progress)));
  font-size: calc(0.9rem - (0.05rem * var(--island-progress)));
  letter-spacing: 0.01em;
  border: 1px solid rgba(193, 255, 236, 0.8);
  box-shadow:
    0 0 0 2px rgba(15, 111, 95, 0.3),
    0 10px 22px rgba(15, 111, 95, 0.33);
  animation: ctaPulse 1.75s ease-in-out infinite;
}

.site-header nav .btn.btn-sm::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(76, 221, 183, 0.14), transparent 68%);
  z-index: -2;
  opacity: 0.7;
  animation: ctaHalo 1.75s ease-in-out infinite;
}

.site-header nav .btn.btn-sm::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(74, 210, 175, 0.66);
  z-index: -1;
  animation: ctaRing 1.75s ease-out infinite;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--line);
}

.section {
  padding: 42px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head-inline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.home-blog-search,
.blog-search-wrap {
  margin: 10px 0 14px;
}

.home-blog-search {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.home-blog-search input,
.blog-search-input {
  flex: 1;
  min-width: 260px;
  border: 1px solid #c9d8d0;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-deep);
  padding: 7px 13px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.filter-chip.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.45rem);
  padding-bottom: 10px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(132px, 70%);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6f5f, #3ebca0, #ed9f2d);
  box-shadow: 0 6px 15px rgba(15, 111, 95, 0.25);
}

.card-grid,
.service-grid,
.faq-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

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

.faq-list-full {
  display: grid;
  gap: 10px;
}

.faq-list-full details {
  border: 1px solid #cfe1da;
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}

.faq-list-full summary {
  cursor: pointer;
  font-weight: 700;
  color: #123428;
}

.faq-list-full p {
  margin: 10px 0 0;
  color: #466156;
}

.faq-cta-box {
  text-align: center;
}

.table-card {
  overflow-x: auto;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.cost-table th,
.cost-table td {
  border: 1px solid #d6e4de;
  padding: 10px 12px;
  text-align: left;
}

.cost-table thead th {
  background: #eef8f3;
  color: #123428;
}

.pillar-static-grid {
  display: grid;
  gap: 14px;
}

.pillar-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pillar-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: -2;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.pillar-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    radial-gradient(120% 80% at 100% 0, rgba(237, 159, 45, 0.2), transparent 60%);
  z-index: -1;
}

.panel-vet-bg::before {
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80");
}

.panel-visa-bg::before {
  background-image: url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1600&q=80");
}

.panel-parent-bg::before {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
}

.pillar-panel:hover {
  transform: translateY(-4px);
  border-color: #9ccbbb;
  box-shadow: 0 22px 40px rgba(12, 74, 64, 0.2);
}

.pillar-panel:hover::before {
  transform: scale(1.04);
  opacity: 0.24;
}

.pillar-panel h3 {
  margin: 0 0 8px;
}

.pillar-panel > p {
  margin-top: 0;
}

.pillar-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e4de;
  margin: 6px 0 12px;
}

.pillar-readflow h4 {
  margin: 0 0 8px;
  color: #0d4d42;
}

.pillar-detail-list {
  margin: 0;
  padding-left: 20px;
  color: #2d4d45;
  line-height: 1.65;
}

.pillar-detail-list li + li {
  margin-top: 7px;
}

.pillar-detail-list.ordered {
  padding-left: 22px;
}

.pillar-note {
  margin: 10px 0 0;
  padding-left: 12px;
  border-left: 3px solid rgba(15, 111, 95, 0.4);
  color: #31554c;
  font-weight: 600;
}

.panel-journey {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 12px;
}

.panel-journey a {
  text-decoration: none;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #cde0d8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.panel-journey a:hover {
  transform: translateY(-2px);
  background: #f2fbf8;
  border-color: #9ecfbe;
}

.card,
.service-card,
.consult,
.timeline li,
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card,
.service-card {
  padding: 20px;
}

.card p,
.service-card p,
.consult p,
.section p {
  color: var(--muted);
}

.card:hover,
.service-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
}

.image-card {
  padding: 10px;
}

.image-card img,
.blog-card img,
.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}

.text-link {
  color: var(--primary-deep);
  text-decoration: none;
  font-weight: 700;
}

.vet-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.vet-clean {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.96)),
    radial-gradient(120% 120% at 0 0, rgba(237, 159, 45, 0.12) 0, transparent 52%);
  isolation: isolate;
}

.vet-clean::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 159, 45, 0.18) 0, rgba(237, 159, 45, 0.03) 55%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}

.vet-clean-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: start;
  padding-right: 10px;
  padding-left: 14px;
}

.vet-clean-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 111, 95, 0.78), rgba(237, 159, 45, 0.72));
}

.vet-clean-copy p {
  margin: 0;
  color: var(--muted);
}

.vet-clean-copy h3 {
  margin: -2px 0 2px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.12;
  color: #103730;
}

.vet-clean-copy-link {
  text-decoration: none;
  color: inherit;
}

.vet-clean-copy-link .btn {
  width: fit-content;
  margin-top: 2px;
}

.vet-clean-copy-link:hover .btn,
.vet-clean-copy-link:focus-visible .btn {
  transform: translateY(-2px);
}

.vet-points {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.vet-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.vet-stage-card {
  display: grid;
  gap: 6px;
  padding: 14px 14px 13px;
  border-radius: 18px;
  border: 1px solid rgba(201, 223, 214, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 249, 0.92)),
    radial-gradient(120% 140% at 100% 0, rgba(15, 111, 95, 0.08) 0, transparent 55%);
  box-shadow: 0 16px 30px rgba(8, 69, 59, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vet-stage-card strong {
  font-size: 0.98rem;
  color: #0b3f37;
}

.vet-stage-card small {
  font-size: 0.83rem;
  line-height: 1.5;
  color: #57736d;
}

.vet-stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 95, 0.24);
  box-shadow: 0 20px 36px rgba(8, 69, 59, 0.12);
}

.vet-clean-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vet-clean-note-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  border: 1px solid rgba(15, 111, 95, 0.16);
  color: #1c5147;
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-pill-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #cfe1da;
  background: #f7fcfa;
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0b5044;
}

.vet-clean-visual {
  position: relative;
  margin: 0;
  min-height: 360px;
  z-index: 1;
}

.vet-clean-visual-link {
  display: block;
  text-decoration: none;
}

.vet-clean-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid #d3e3dc;
  box-shadow: 0 22px 36px rgba(8, 69, 59, 0.18);
  transition: transform 0.38s ease, filter 0.32s ease, box-shadow 0.32s ease;
}

.vet-clean-visual-link:hover img,
.vet-clean-visual-link:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.06);
  box-shadow: 0 26px 42px rgba(8, 69, 59, 0.22);
}

.vet-clean-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(213, 229, 222, 0.92);
  box-shadow: 0 14px 28px rgba(8, 69, 59, 0.14);
  color: #0b5044;
  font-weight: 700;
}

.vet-clean-stat {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 150px;
  max-width: 196px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8, 45, 39, 0.82);
  border: 1px solid rgba(225, 243, 236, 0.18);
  box-shadow: 0 20px 34px rgba(7, 33, 29, 0.24);
  color: #effbf6;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: float 6.5s ease-in-out infinite;
}

.vet-clean-stat strong {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.vet-clean-stat small {
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(237, 250, 244, 0.86);
}

.vet-clean-stat.stat-a {
  top: 18px;
  left: 18px;
}

.vet-clean-stat.stat-b {
  top: 86px;
  right: 18px;
  animation-delay: -2.2s;
}

.vet-visual {
  position: relative;
  margin: 0;
  min-height: 360px;
}

.vet-main-object {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 92%;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #d3e3dc;
  box-shadow: 0 22px 36px rgba(8, 69, 59, 0.24);
  animation: objectFloat 4.8s ease-in-out infinite;
}

.vet-float-card {
  position: absolute;
  right: 0;
  top: 34px;
  width: 38%;
  border-radius: 16px;
  border: 3px solid #fff;
  box-shadow: 0 14px 28px rgba(8, 69, 59, 0.3);
  animation: objectFloat 3.8s ease-in-out infinite reverse;
}

.vet-corner-chip {
  position: absolute;
  right: 6px;
  bottom: 18px;
  width: 34%;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 12px 24px rgba(8, 69, 59, 0.28);
  animation: objectFloat 4.4s ease-in-out infinite;
}

.report-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.report-block img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d8e3de;
  box-shadow: 0 18px 32px rgba(15, 111, 95, 0.2);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 18px;
  align-items: start;
}

.timeline span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #edf8f4;
  color: var(--primary);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
}

.card-link .text-link,
.pain-card-link .text-link {
  display: inline-flex;
  margin-top: 8px;
}

.cert-slider {
  margin-top: 14px;
}

.cert-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.cert-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #b8d3c8;
  background: linear-gradient(145deg, #ffffff, #e9f6f1);
  color: #0d4d42;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cert-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(10, 78, 66, 0.2);
}

.cert-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cert-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 0 2px 6px;
}

.cert-card {
  flex: 0 0 clamp(250px, 29vw, 335px);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.cert-card .text-link {
  margin-top: auto;
  padding-top: 10px;
}

.cert-more-hint {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  padding: 4px 10px;
  margin: 8px 0 0;
  text-align: center;
  color: #0f6f5f;
  letter-spacing: 0.35em;
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0.72;
  cursor: pointer;
  transition: transform 0.24s ease, opacity 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.cert-more-hint:hover,
.cert-more-hint:focus-visible {
  opacity: 1;
  border-color: rgba(15, 111, 95, 0.25);
  background: rgba(15, 111, 95, 0.08);
  transform: translateY(-1px);
}

.cert-more-hint:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 111, 95, 0.15);
}

.section-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.soft-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-deep);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.australia-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
  align-items: stretch;
  isolation: isolate;
}

.australia-story::before {
  content: "";
  position: absolute;
  inset: -24px auto auto -18px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 159, 45, 0.16) 0, rgba(237, 159, 45, 0.04) 54%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

.australia-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d4e4dd;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 244, 0.86));
  box-shadow: 0 24px 55px rgba(11, 80, 68, 0.12);
  transition:
    transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.australia-story-hero:hover,
.australia-story-hero:focus-within {
  transform: translateY(-6px);
  border-color: #a3d1c3;
  box-shadow: 0 30px 60px rgba(11, 80, 68, 0.16);
}

.australia-story-media {
  position: relative;
  margin: 0;
  min-height: 100%;
}

.australia-story-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.australia-story-hero:hover .australia-story-media img,
.australia-story-hero:focus-within .australia-story-media img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.australia-story-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(8, 44, 38, 0.74);
  color: #f4fbf7;
  box-shadow: 0 18px 36px rgba(3, 18, 15, 0.22);
  line-height: 1.3;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: floatBadge 3.4s ease-in-out infinite;
}

.australia-story-badge strong {
  display: block;
  margin-top: 2px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.1rem;
}

.australia-story-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.14) 0, transparent 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 244, 0.9));
  position: relative;
}

.australia-story-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 111, 95, 0.82), rgba(237, 159, 45, 0.7));
}

.australia-story-copy h3 {
  margin: 0;
  font-size: clamp(1.34rem, 2vw, 1.82rem);
  line-height: 1.22;
}

.australia-story-copy p {
  margin: 0;
  color: var(--muted);
}

.australia-reason-stack {
  display: grid;
  gap: 14px;
}

.australia-reason-card {
  position: relative;
  min-height: 140px;
  padding: 22px 20px 22px 90px;
  border-radius: 22px;
  border: 1px solid #d6e6df;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.92)),
    radial-gradient(100% 140% at 100% 0%, rgba(15, 111, 95, 0.1) 0, transparent 58%);
  box-shadow: 0 20px 36px rgba(11, 80, 68, 0.09);
  transition:
    transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.australia-reason-card:nth-child(2) {
  transform: translateX(10px);
}

.australia-reason-card:nth-child(3) {
  transform: translateX(18px);
}

.australia-reason-card:hover,
.australia-reason-card:focus-within {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: #a1d2c3;
  box-shadow: 0 28px 44px rgba(11, 80, 68, 0.14);
}

.australia-reason-card h3,
.australia-reason-card p {
  margin: 0;
}

.australia-reason-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.australia-reason-card p {
  color: var(--muted);
}

.reason-index {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #0f6f5f, #0b5044);
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.15rem;
  box-shadow: 0 14px 24px rgba(11, 80, 68, 0.22);
}

.strategy-radar {
  display: block;
  position: relative;
}

.strategy-radar-compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.strategy-compact-visual {
  margin: 0;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d6e7df;
  box-shadow: 0 24px 44px rgba(11, 80, 68, 0.1);
}

.strategy-compact-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.strategy-radar-compact-list {
  align-content: stretch;
}

.strategy-radar-item-compact {
  grid-template-columns: 66px minmax(0, 1fr);
  min-height: 128px;
}

.strategy-radar-item-compact .strategy-radar-copy h3 {
  margin-bottom: 8px;
}

.strategy-radar::before {
  content: "";
  position: absolute;
  inset: 18px auto auto -10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 95, 0.12) 0, rgba(15, 111, 95, 0.02) 58%, transparent 74%);
  z-index: -1;
}

.strategy-radar-intro {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #d6e7df;
  background:
    radial-gradient(120% 150% at 100% 0%, rgba(237, 159, 45, 0.18) 0, transparent 46%),
    linear-gradient(160deg, #ffffff, #eef8f3);
  box-shadow: 0 24px 44px rgba(11, 80, 68, 0.1);
}

.strategy-radar-intro::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -48px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 95, 0.22) 0, rgba(15, 111, 95, 0) 70%);
}

.strategy-radar-intro h3,
.strategy-radar-intro p {
  margin: 0;
}

.strategy-radar-meter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.strategy-radar-meter span {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 111, 95, 0.18), rgba(15, 111, 95, 0.6), rgba(237, 159, 45, 0.85));
  animation: pulseMeter 2.8s ease-in-out infinite;
  transform-origin: left center;
}

.strategy-radar-meter span:nth-child(2) {
  animation-delay: 0.22s;
}

.strategy-radar-meter span:nth-child(3) {
  animation-delay: 0.44s;
}

.strategy-radar-list {
  display: grid;
  gap: 14px;
}

.strategy-radar-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 188px;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid #d6e6df;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(11, 80, 68, 0.08);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease;
  position: relative;
  isolation: isolate;
}

.strategy-radar-item::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 159, 45, 0.12) 0, transparent 72%);
  z-index: -1;
}

.strategy-radar-item:hover,
.strategy-radar-item:focus-visible {
  transform: translateX(6px);
  border-color: #9dcfbe;
  box-shadow: 0 24px 42px rgba(11, 80, 68, 0.12);
}

.strategy-radar-item img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #d8e7e1;
  transition: transform 0.36s ease, filter 0.32s ease;
}

.strategy-radar-item:hover img,
.strategy-radar-item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.strategy-index {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 111, 95, 0.1), rgba(15, 111, 95, 0.2));
  border: 1px solid rgba(15, 111, 95, 0.15);
  color: var(--primary-deep);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.18rem;
}

.strategy-radar-copy h3,
.strategy-radar-copy p,
.strategy-link {
  margin: 0;
}

.strategy-radar-copy h3 {
  margin-bottom: 6px;
}

.strategy-radar-copy p {
  color: var(--muted);
}

.strategy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--primary-deep);
  font-weight: 700;
}

.strategy-link::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.22s ease;
}

.strategy-radar-item:hover .strategy-link::after,
.strategy-radar-item:focus-visible .strategy-link::after {
  transform: translateX(4px);
}

.gerimmi-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 18px;
  align-items: stretch;
  position: relative;
  isolation: isolate;
}

.gerimmi-proof::before {
  content: "";
  position: absolute;
  inset: auto -12px -28px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 95, 0.14) 0, rgba(15, 111, 95, 0.02) 60%, transparent 76%);
  z-index: -1;
}

.gerimmi-proof-main {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0;
  border-radius: 26px;
  background: transparent;
  color: var(--text);
  box-shadow: 0 26px 48px rgba(11, 80, 68, 0.2);
  border: 0;
}

.gerimmi-proof-visual {
  position: relative;
  min-height: 360px;
  padding: 0;
  background: transparent;
  border-radius: inherit;
}

.gerimmi-proof-visual::after {
  content: none;
}

.gerimmi-proof-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
  border-radius: inherit;
}

.gerimmi-proof-overlay {
  position: absolute;
  left: 20px;
  right: auto;
  bottom: 20px;
  display: flex;
  justify-content: flex-start;
  padding: 10px;
  background: linear-gradient(145deg, rgba(9, 37, 31, 0.56), rgba(10, 47, 39, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow: 0 14px 30px rgba(6, 31, 26, 0.18);
  z-index: 2;
}

.gerimmi-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gerimmi-proof-pills span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f2fbf7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gerimmi-proof-overlay h3,
.gerimmi-proof-overlay p {
  margin: 0;
}

.gerimmi-proof-overlay p {
  color: rgba(242, 251, 247, 0.88);
}

.gerimmi-proof-main::after {
  content: none;
}

.gerimmi-proof-main h3,
.gerimmi-proof-main p {
  margin: 0;
}

.gerimmi-proof-main p {
  color: var(--muted);
}

.gerimmi-proof-main .program-list {
  color: rgba(255, 255, 255, 0.92);
}

.gerimmi-proof-main .btn {
  width: fit-content;
  margin-top: 0;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6f5f, #16977f);
  box-shadow: 0 12px 24px rgba(11, 80, 68, 0.22);
}

.gerimmi-proof-main .btn:hover,
.gerimmi-proof-main .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(11, 80, 68, 0.28);
}

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

.gerimmi-proof-card {
  min-height: 176px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid #d6e6df;
  box-shadow: 0 18px 34px rgba(11, 80, 68, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.gerimmi-proof-card::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -30px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 95, 0.12) 0, rgba(15, 111, 95, 0) 72%);
}

.gerimmi-proof-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -24px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0, transparent 70%);
  pointer-events: none;
}

.gerimmi-proof-card:hover,
.gerimmi-proof-card:focus-within {
  transform: translateY(-6px);
  border-color: #a2d1c3;
  box-shadow: 0 24px 42px rgba(11, 80, 68, 0.14);
}

.gerimmi-proof-card h3,
.gerimmi-proof-card p {
  margin: 0;
}

.gerimmi-proof-card h3 {
  margin-bottom: 8px;
}

.gerimmi-proof-card p {
  color: var(--muted);
}

.gerimmi-proof-card.tone-a {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 244, 0.94));
}

.gerimmi-proof-card.tone-b {
  background: linear-gradient(145deg, rgba(255, 249, 239, 0.98), rgba(255, 243, 226, 0.94));
}

.gerimmi-proof-card.tone-c {
  background: linear-gradient(145deg, rgba(238, 247, 255, 0.98), rgba(227, 241, 255, 0.94));
}

.gerimmi-proof-card.tone-d {
  background: linear-gradient(145deg, rgba(15, 111, 95, 0.12), rgba(15, 111, 95, 0.2));
}

.gerimmi-proof-stat {
  display: grid;
  align-content: center;
}

.gerimmi-proof-stat strong {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  line-height: 1;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.gerimmi-proof-stat span {
  color: var(--primary-deep);
  font-weight: 700;
}

.gerimmi-number-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.gerimmi-number-band article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #d8e7e1;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.9));
  box-shadow: 0 18px 32px rgba(11, 80, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gerimmi-number-band article:hover,
.gerimmi-number-band article:focus-within {
  transform: translateY(-5px);
  border-color: #a8d2c3;
  box-shadow: 0 24px 42px rgba(11, 80, 68, 0.14);
}

.number-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #5a7a6e;
  font-weight: 800;
}

.gerimmi-number-band strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--primary-deep);
}

.gerimmi-number-band p {
  margin: 0;
  color: var(--muted);
}

.industry-carousel {
  overflow: hidden;
  border-radius: 20px;
  padding: 2px 0 8px;
}

.industry-fixed-grid {
  display: grid;
  width: min(100%, 1180px);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  justify-content: center;
}

.industry-carousel.marquee-static {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.industry-carousel.marquee-static .industry-track {
  transform: translate3d(0, 0, 0) !important;
}

.industry-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
  user-select: none;
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(300px, 36vw, 520px);
  border-radius: 20px;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  border: 1px solid #cde0d8;
  box-shadow: 0 20px 45px rgba(9, 72, 61, 0.2);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-fixed-grid .industry-card {
  flex: 0 0 auto;
}

.industry-card img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  position: relative;
  inset: auto;
  transition: transform 0.5s ease;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 136px;
  background:
    linear-gradient(180deg, rgba(8, 50, 43, 0.08) 0%, rgba(8, 50, 43, 0.12) 32%, rgba(8, 50, 43, 0.34) 100%),
    radial-gradient(120% 90% at 90% 0, rgba(237, 159, 45, 0.2) 0%, transparent 58%);
  z-index: 0;
  pointer-events: none;
}

.industry-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  height: 100%;
}

.industry-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin: -18px 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 231, 0.58);
  background: linear-gradient(160deg, rgba(8, 84, 71, 0.98), rgba(16, 121, 102, 0.98));
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fffdf4 !important;
  -webkit-text-fill-color: #fffdf4 !important;
  font-weight: 900;
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 4;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.46),
    0 0 12px rgba(0, 0, 0, 0.22);
}

.industry-body {
  margin-top: -8px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  padding: 16px 16px 15px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.96)),
    radial-gradient(120% 140% at 100% 0, rgba(15, 111, 95, 0.1) 0, transparent 56%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(4, 27, 23, 0.22);
  color: #153a33;
  min-height: 100%;
}

.industry-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #082d28;
  text-wrap: balance;
}

.industry-summary {
  margin: 0;
  color: #4f6b64;
  font-size: 0.88rem;
  line-height: 1.46;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.industry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  border: 1px solid rgba(15, 111, 95, 0.14);
  color: #234a42;
  font-size: 0.76rem;
  font-weight: 700;
}

.industry-action {
  margin-top: auto;
  width: 100%;
  align-self: start;
  min-height: 42px;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(9, 72, 61, 0.32);
}

.industry-card:hover img {
  transform: scale(1.06);
}

.program-summary {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.pathway-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 246, 0.95)),
    radial-gradient(120% 130% at 100% 0, rgba(15, 111, 95, 0.1) 0, transparent 60%);
  isolation: isolate;
}

.pathway-spotlight::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 95, 0.14) 0, rgba(15, 111, 95, 0.03) 58%, transparent 74%);
  z-index: 0;
  pointer-events: none;
}

.pathway-spotlight-visual {
  position: relative;
  margin: 0;
  min-height: 100%;
  z-index: 1;
}

.pathway-spotlight-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #d2e3dc;
  box-shadow: 0 20px 36px rgba(10, 74, 64, 0.16);
}

.pathway-spotlight-marker {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 136px;
  max-width: 172px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 228, 222, 0.96);
  box-shadow: 0 18px 34px rgba(8, 69, 59, 0.14);
  color: #123e36;
  animation: float 7.5s ease-in-out infinite;
}

.pathway-spotlight-marker strong {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  color: #0b5044;
}

.pathway-spotlight-marker small {
  font-size: 0.76rem;
  line-height: 1.4;
  color: #4f6b64;
}

.pathway-spotlight-marker.marker-a {
  top: 18px;
  left: 18px;
}

.pathway-spotlight-marker.marker-b {
  top: 92px;
  right: 18px;
  animation-delay: -2.6s;
}

.pathway-spotlight-flow {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 228, 222, 0.98);
  box-shadow: 0 14px 26px rgba(8, 69, 59, 0.14);
  color: #0b5044;
}

.pathway-spotlight-flow strong {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.35rem;
  color: var(--primary-deep);
}

.pathway-spotlight-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: start;
  padding-left: 14px;
}

.pathway-spotlight-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 111, 95, 0.78), rgba(237, 159, 45, 0.7));
}

.pathway-spotlight-copy p {
  margin: 0;
  color: var(--muted);
}

.pathway-spotlight-intro {
  display: grid;
  gap: 8px;
}

.pathway-spotlight-intro h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.15vw, 2rem);
  line-height: 1.12;
  color: #103730;
}

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

.pathway-stage-card {
  display: grid;
  gap: 8px;
  padding: 15px;
  border-radius: 18px;
  border: 1px solid rgba(201, 223, 214, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 251, 248, 0.95)),
    radial-gradient(120% 120% at 100% 0, rgba(237, 159, 45, 0.08) 0, transparent 60%);
  box-shadow: 0 16px 28px rgba(8, 69, 59, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pathway-stage-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 111, 95, 0.1);
  color: #0b5044;
  font-size: 0.85rem;
  font-weight: 800;
}

.pathway-stage-card strong {
  color: #0d3b32;
  font-size: 0.96rem;
}

.pathway-stage-card p {
  font-size: 0.85rem;
  line-height: 1.52;
}

.pathway-stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 95, 0.24);
  box-shadow: 0 20px 36px rgba(8, 69, 59, 0.12);
}

.pathway-spotlight-benefits {
  border: 1px solid #d8e7e1;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 247, 0.96)),
    radial-gradient(120% 140% at 100% 0, rgba(15, 111, 95, 0.08) 0, transparent 60%);
  padding: 18px;
  box-shadow: 0 18px 30px rgba(8, 69, 59, 0.08);
}

.pathway-spotlight-benefits h3 {
  margin: 0 0 10px;
}

.pathway-spotlight .btn {
  width: fit-content;
}

.pathway-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.pathway-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pathway-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  border: 1px solid rgba(15, 111, 95, 0.14);
  color: #1c5147;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.program-visual-strip {
  margin: 12px 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.program-visual-strip img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d2e3dc;
  box-shadow: 0 12px 24px rgba(10, 74, 64, 0.14);
}

.program-summary-side {
  border: 1px solid #cfe1da;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, #f8fcfa, #eef8f3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}

.program-summary-side-image {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d2e3dc;
  margin-bottom: 6px;
  box-shadow: 0 12px 22px rgba(10, 74, 64, 0.16);
}

.program-summary-side h3 {
  margin-top: 0;
}

.program-summary-note {
  margin: 0;
  padding-top: 4px;
  border-top: 1px dashed #b8d7cc;
}

.program-summary-side .btn {
  margin-top: auto;
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.partner-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.96fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
}

.partner-summary-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.partner-summary-copy h3,
.partner-summary-copy p {
  margin: 0;
}

.partner-summary-copy p {
  color: var(--muted);
}

.partner-summary-copy h3 {
  font-size: clamp(1.48rem, 2.2vw, 2.08rem);
}

.partner-summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-summary-list li {
  position: relative;
  padding: 14px 16px 14px 50px;
  border-radius: 18px;
  border: 1px solid #d7e7e1;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 244, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.08) 0, transparent 52%);
  box-shadow: 0 12px 24px rgba(11, 80, 68, 0.07);
  color: #21463f;
}

.partner-summary-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7d57e 0, #ed9f2d 44%, #cf7f00 100%);
  box-shadow: 0 0 0 6px rgba(237, 159, 45, 0.12);
}

.partner-summary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.partner-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-summary-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.14);
  background: rgba(15, 111, 95, 0.08);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.partner-summary-visual {
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d5e5de;
  background:
    radial-gradient(120% 120% at 100% 0, rgba(237, 159, 45, 0.18) 0, transparent 46%),
    radial-gradient(120% 120% at 12% 10%, rgba(15, 111, 95, 0.18) 0, transparent 44%),
    linear-gradient(160deg, #ffffff, #eef7f3);
  box-shadow: 0 20px 38px rgba(11, 80, 68, 0.1);
}

.partner-summary-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(15, 111, 95, 0.16);
}

.partner-summary-logo {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0, rgba(239, 248, 244, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 42px rgba(11, 80, 68, 0.14);
  z-index: 2;
}

.partner-summary-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-summary-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(11, 80, 68, 0.16);
}

.partner-summary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-summary-photo.photo-a {
  left: 20px;
  top: 94px;
  width: 39%;
  aspect-ratio: 0.92;
  animation: partnerPhotoFloat 6.6s ease-in-out infinite;
}

.partner-summary-photo.photo-b {
  right: 20px;
  bottom: 72px;
  width: 42%;
  aspect-ratio: 1.1;
  animation: partnerPhotoFloat 7.2s ease-in-out infinite reverse;
}

.partner-summary-route {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 228, 222, 0.92);
  box-shadow: 0 14px 28px rgba(11, 80, 68, 0.12);
  text-align: center;
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-refined {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.partner-refined::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 159, 45, 0.14) 0, rgba(237, 159, 45, 0.04) 56%, transparent 72%);
  z-index: -1;
}

.partner-refined-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  padding-left: 14px;
  position: relative;
}

.partner-refined-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 111, 95, 0.78), rgba(237, 159, 45, 0.68));
}

.partner-refined-copy h3,
.partner-refined-copy p {
  margin: 0;
}

.partner-refined-copy p {
  color: var(--muted);
}

.partner-refined-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.partner-refined-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 18px;
  border: 1px solid #d7e7e1;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 244, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.08) 0, transparent 52%);
  box-shadow: 0 12px 24px rgba(11, 80, 68, 0.07);
  color: #21463f;
}

.partner-refined-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7d57e 0, #ed9f2d 44%, #cf7f00 100%);
  box-shadow: 0 0 0 5px rgba(237, 159, 45, 0.1);
}

.partner-refined-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.partner-refined-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-refined-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.18);
  background: rgba(15, 111, 95, 0.1);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.partner-refined-visual {
  position: relative;
  min-height: 380px;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d5e5de;
  box-shadow: 0 20px 38px rgba(11, 80, 68, 0.12);
}

.partner-refined-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.partner-refined-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 26, 0.06) 0%, rgba(8, 31, 26, 0.18) 38%, rgba(8, 31, 26, 0.72) 100%),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.18) 0, transparent 48%);
}

.partner-refined-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 32px rgba(11, 80, 68, 0.16);
}

.partner-refined-logo img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.partner-refined-rail {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.partner-refined-rail span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 28, 23, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f2fbf7;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.partner-refined-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(7, 28, 23, 0.86), rgba(7, 28, 23, 0.68)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.16) 0, transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2fbf7;
  line-height: 1.55;
}

.partner-simple {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
}

.partner-simple-visual {
  margin: 0;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d5e5de;
  box-shadow: 0 20px 38px rgba(11, 80, 68, 0.12);
}

.partner-simple-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.partner-simple-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.partner-simple-copy p,
.partner-simple-copy h3 {
  margin: 0;
}

.partner-simple-copy p {
  color: var(--muted);
}

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

.enrollment-card {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid #d6e6df;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 244, 0.92)),
    radial-gradient(100% 100% at 100% 0%, rgba(237, 159, 45, 0.12) 0, transparent 56%);
  box-shadow: 0 18px 32px rgba(11, 80, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.enrollment-card:hover,
.enrollment-card:focus-within {
  transform: translateY(-5px);
  border-color: #9ecfbe;
  box-shadow: 0 24px 40px rgba(11, 80, 68, 0.12);
}

.enrollment-card h3,
.enrollment-card p {
  margin: 0;
}

.enrollment-card h3 {
  margin-bottom: 8px;
}

.enrollment-card p {
  color: var(--muted);
  max-width: 28ch;
}

.enrollment-step {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.1);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enrollment-icon {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0, transparent 32%),
    linear-gradient(145deg, rgba(15, 111, 95, 0.16), rgba(237, 159, 45, 0.22));
  color: var(--primary-deep);
  font-size: 3.2rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 14px 28px rgba(12, 74, 64, 0.12);
}

.consult-minimal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid #d5e5de;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.94)),
    radial-gradient(110% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 48%);
  box-shadow: 0 22px 40px rgba(12, 74, 64, 0.08);
}

.consult-minimal-copy {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 10px 4px 4px;
  max-width: 31rem;
  margin: 0;
}

.consult-minimal-copy h3 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.48rem, 1.95vw, 1.94rem);
  line-height: 1.06;
}

.consult-minimal-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.consult-minimal-list li {
  position: relative;
  padding-left: 18px;
  color: #2a4e44;
  font-size: 0.95rem;
  font-weight: 600;
}

.consult-minimal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f6f5f, #ed9f2d);
  box-shadow: 0 0 0 4px rgba(15, 111, 95, 0.1);
}

.consult-trigger-card {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 0 0 auto;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 111, 95, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 250, 0.96)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 54%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 16px 28px rgba(12, 74, 64, 0.08);
}

.consult-inline-form {
  align-content: start;
}

.consult-inline-form .consult-interest-field {
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.consult-inline-fields {
  display: grid;
  gap: 10px;
}

.consult-inline-fields label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-deep);
}

.consult-inline-form .consult-submit-btn {
  width: 100%;
}

.consult-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 80;
}

.consult-confetti-piece {
  position: absolute;
  top: -12px;
  width: 10px;
  height: 16px;
  border-radius: 3px;
  opacity: 0;
  animation: consultConfettiFall 1.35s cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
}

@keyframes consultConfettiFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -12px, 0) rotate(0deg) scale(0.9);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-x, 0), calc(100vh * 0.42), 0) rotate(var(--confetti-r, 240deg)) scale(1);
  }
}

.visa-pathway-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.visa-pathway-lead {
  display: grid;
  gap: 14px;
  align-content: start;
}

.visa-pathway-lead h3,
.visa-pathway-lead p {
  margin: 0;
}

.visa-pathway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visa-pathway-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.14);
  background: rgba(15, 111, 95, 0.06);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.visa-pathway-visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d6e6df;
}

.visa-pathway-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.visa-pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visa-grid-3,
.visa-grid-4 {
  display: grid;
  gap: 14px;
}

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

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

.visa-report {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.visa-report-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d6e6df;
  box-shadow: 0 20px 38px rgba(11, 80, 68, 0.12);
}

.visa-report-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.visa-report-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.visa-report-copy .program-list,
.visa-report-copy .program-note {
  margin: 0;
}

.visa-mini-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.visa-mini-card h3,
.visa-mini-card p {
  margin: 0;
}

.visa-mini-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.28;
}

.visa-mini-card p {
  color: var(--muted);
}

.visa-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.1);
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.visa-field-grid {
  display: grid;
  gap: 14px;
}

.visa-field-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d6e6df;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.94));
  box-shadow: 0 18px 34px rgba(11, 80, 68, 0.08);
}

.visa-field-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.visa-field-copy {
  padding: 16px;
}

.visa-field-copy h3,
.visa-field-copy p {
  margin: 0;
}

.visa-field-copy h3 {
  margin-bottom: 8px;
}

.visa-field-copy p {
  color: var(--muted);
}

.visa-pathway-banner {
  margin-bottom: 14px;
}

.visa-pathway-step {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #d6e6df;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 244, 0.92));
}

.visa-pathway-step span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.1);
  color: var(--primary-deep);
  font-weight: 800;
  margin-bottom: 10px;
}

.visa-pathway-step h3,
.visa-pathway-step p {
  margin: 0;
}

.visa-pathway-step h3 {
  margin-bottom: 8px;
  min-height: 88px;
}

.visa-pathway-step strong {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 6px;
  color: var(--primary-deep);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visa-output-box {
  margin-top: 0;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(15, 111, 95, 0.08);
  border: 1px solid rgba(15, 111, 95, 0.12);
  min-height: 196px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
}

@media (min-width: 1081px) {
  .visa-output-box {
    height: 196px;
  }
}

.visa-output-box strong,
.visa-output-box p {
  margin: 0;
}

.visa-output-box strong {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: #0f6f5f;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visa-output-box p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.48;
}

.visa-section-note {
  margin-top: 14px;
}

.visa-report-tight .program-list {
  display: grid;
  gap: 10px;
}

.visa-training-chart {
  display: grid;
  gap: 14px;
}

.visa-training-scale {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visa-training-scale span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  border: 1px solid rgba(15, 111, 95, 0.12);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visa-training-grid {
  align-items: stretch;
}

.visa-training-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 10px;
}

.visa-training-card h3,
.visa-training-card p {
  margin: 0;
}

.visa-card-label,
.visa-training-card p:last-child {
  color: var(--muted);
}

.visa-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.visa-training-level {
  height: 130px;
  display: flex;
  align-items: end;
}

.visa-training-level span {
  width: 100%;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(237, 159, 45, 0.9), rgba(15, 111, 95, 0.94)),
    radial-gradient(100% 120% at 50% 0, rgba(255, 255, 255, 0.3) 0, transparent 56%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.visa-training-card-1 .visa-training-level span {
  height: 46%;
}

.visa-training-card-2 .visa-training-level span {
  height: 72%;
}

.visa-training-card-3 .visa-training-level span {
  height: 100%;
}

.visa-training-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visa-benefit-report {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 16px;
  align-items: stretch;
}

.visa-benefit-media,
.visa-pathway-report-media,
.visa-cost-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d6e6df;
  box-shadow: 0 18px 34px rgba(11, 80, 68, 0.12);
}

.visa-benefit-media img,
.visa-pathway-report-media img,
.visa-cost-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visa-benefit-media img {
  min-height: 290px;
}

.visa-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.visa-benefit-grid .visa-mini-card {
  display: grid;
  align-content: start;
}

.visa-industry-grid .industry-card {
  min-height: 100%;
}

.visa-pathway-report {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.visa-pathway-report-media img {
  min-height: 180px;
  max-height: 220px;
}

.visa-pathway-report-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.visa-pathway-report-copy h3,
.visa-pathway-report-copy p {
  margin: 0;
}

.visa-pathway-report-copy p {
  color: var(--muted);
}

.visa-pathway-step {
  display: grid;
  grid-template-rows: auto minmax(88px, auto) minmax(180px, auto) auto;
  gap: 10px;
  align-content: start;
}

.visa-pathway-step > p,
.visa-pathway-step h3 {
  margin: 0;
}

.visa-pathway-step > p {
  min-height: 180px;
}

.visa-cost-board {
  display: grid;
  gap: 16px;
}

.visa-cost-highlight {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(15, 111, 95, 0.1) 0, transparent 42%),
    radial-gradient(120% 140% at 100% 0%, rgba(237, 159, 45, 0.14) 0, transparent 46%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.94));
}

.visa-cost-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.visa-cost-copy h3,
.visa-cost-copy p {
  margin: 0;
}

.visa-cost-copy p:last-child {
  color: var(--muted);
}

.visa-cost-grid {
  align-items: stretch;
}

.visa-cost-card {
  position: relative;
  overflow: hidden;
}

.visa-cost-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(15, 111, 95, 0.92), rgba(237, 159, 45, 0.92));
}

.visa-cost-card h3,
.visa-cost-card p {
  margin: 0;
}

.visa-cost-card h3 {
  margin-bottom: 8px;
}

.visa-cost-card p {
  color: var(--muted);
}

.consult-assessment-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 400px);
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid #d5e5de;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(15, 111, 95, 0.08) 0, transparent 42%),
    radial-gradient(110% 120% at 100% 0%, rgba(237, 159, 45, 0.12) 0, transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.94));
  box-shadow: 0 24px 44px rgba(12, 74, 64, 0.12);
}

.consult-assessment-aside {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 6px 4px 4px;
}

.consult-assessment-aside h3 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.36rem, 1.9vw, 1.82rem);
  line-height: 1.1;
}

.consult-form-wrap {
  min-width: 0;
  display: grid;
  justify-content: end;
}

.consult-form-head {
  display: grid;
  gap: 6px;
}

.consult-form-head h3,
.consult-form-head p {
  margin: 0;
}

.consult-form-head h3 {
  font-size: clamp(1.22rem, 1.8vw, 1.58rem);
  line-height: 1.1;
}

.consult-form-head p {
  color: var(--muted);
  max-width: 24ch;
  font-size: 0.88rem;
  line-height: 1.42;
}

.consult-form-step-intro .consult-next-btn,
.consult-step-actions {
  margin-top: auto;
}

.consult-form-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.1);
  border: 1px solid rgba(15, 111, 95, 0.18);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.consult-summary-links {
  margin: 16px 0 18px;
}

.consult-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid #d5e5de;
  border-radius: 28px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(15, 111, 95, 0.08) 0, transparent 42%),
    radial-gradient(110% 120% at 100% 0%, rgba(237, 159, 45, 0.12) 0, transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.94));
  box-shadow: 0 24px 44px rgba(12, 74, 64, 0.12);
}

.consult-shell:focus-within {
  border-color: #93c8b6;
  box-shadow: 0 26px 46px rgba(15, 111, 95, 0.18);
}

.consult-overview {
  display: grid;
  align-content: start;
  gap: 18px;
}

.consult-lead {
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
  font-size: 0.94rem;
  line-height: 1.5;
}

.consult-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consult-meta-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d6e6df;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 58%);
  box-shadow: 0 10px 18px rgba(12, 74, 64, 0.06);
  color: #1a4a3f;
  font-size: 0.84rem;
  font-weight: 700;
}

.consult-visual-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.76fr);
  gap: 10px;
  align-items: stretch;
}

.consult-inline-photo {
  margin: 0;
  min-height: 118px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d6e6df;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.94));
  box-shadow: 0 16px 28px rgba(12, 74, 64, 0.1);
}

.consult-inline-photo img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  display: block;
}

.consult-inline-bear {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 18px;
  border: 1px solid #d6e6df;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 58%);
}

.consult-bear-compact {
  width: 58px;
  height: 78px;
  min-height: 78px;
  margin: 0;
  padding: 0;
  transform: none;
  transform-origin: center center;
}

.consult-mascot-note {
  margin: 0;
  text-align: left;
  color: #2f5a4f;
  font-size: 0.69rem;
  line-height: 1.26;
  font-weight: 700;
  max-width: 13ch;
}

.consult-form-card {
  display: grid;
  align-content: start;
  gap: 10px;
  width: min(100%, 360px);
  min-height: auto;
  padding: 12px 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(15, 111, 95, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 250, 0.96)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 54%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 16px 28px rgba(12, 74, 64, 0.08);
  overflow: hidden;
}

.consult-form-slider {
  position: relative;
  overflow: hidden;
  min-height: 202px;
}

.consult-form-step {
  width: 100%;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-right: 0;
  min-height: 202px;
  transition:
    transform 0.42s cubic-bezier(0.22, 0.9, 0.24, 1),
    opacity 0.28s ease;
}

.consult-form-step-intro {
  align-content: center;
  gap: 8px;
}

.consult-form-step.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  min-height: 100%;
}

.consult-form-step[aria-hidden="true"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.consult-form-step-intro[aria-hidden="true"] {
  transform: translateX(-24px);
}

.consult-form-step-details[aria-hidden="true"] {
  transform: translateX(24px);
}

.consult-form-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.98rem;
}

.consult-form-card .btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 28px rgba(11, 80, 68, 0.25);
}

.consult-interest-field {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #1c4339;
}

.consult-form-fields {
  display: grid;
  gap: 8px;
}

.consult-form-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.consult-form-fields label,
.consult-select-field {
  display: grid;
  gap: 5px;
  font-weight: 600;
  color: #24473d;
  font-size: 0.95rem;
}

.consult-select-field {
  position: relative;
}

.sr-only-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consult-select-shell {
  position: relative;
  display: block;
  width: 100%;
}

.consult-select-shell::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0b5e50;
  border-bottom: 2px solid #0b5e50;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.consult-form-card input {
  min-height: 42px;
  padding: 8px 11px;
}

.consult-select-shell select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 8px 42px 8px 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.96)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 54%);
  cursor: pointer;
}

.consult-select-caret {
  display: none;
}

.consult-inline-form .consult-interest-field,
.consult-inline-form .consult-interest-field .consult-select-shell,
.consult-inline-form .consult-interest-field select,
.consult-inline-fields label,
.consult-inline-fields input {
  width: 100%;
}

.consult-step-actions {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 6px;
  margin-top: 2px;
}

.consult-back-btn {
  min-height: 40px;
  border: 1px solid #cfe1da;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 244, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.06) 0, transparent 58%);
  color: var(--primary-deep);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.consult-next-btn,
.consult-submit-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(11, 80, 68, 0.16);
  background: linear-gradient(145deg, #0f6f5f, #0b5a4c);
}

.consult-next-btn::after,
.consult-submit-btn::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -24%;
  width: 40%;
  height: 360%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  animation: heroCtaSweep 2.9s linear infinite;
  pointer-events: none;
}

.consult-next-btn:hover,
.consult-submit-btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.04);
  box-shadow: 0 18px 30px rgba(11, 80, 68, 0.24);
}

.consult-back-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 80, 68, 0.1);
}

.consult-interest-dropdown {
  position: relative;
}

.consult-interest-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 111, 95, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(12, 74, 64, 0.05);
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.consult-interest-trigger:hover,
.consult-interest-trigger:focus-visible,
.consult-interest-dropdown.is-open .consult-interest-trigger {
  border-color: rgba(15, 111, 95, 0.22);
  box-shadow: 0 12px 24px rgba(12, 74, 64, 0.08);
}

.consult-interest-trigger:focus-visible {
  outline: 2px solid rgba(15, 111, 95, 0.24);
  outline-offset: 2px;
}

.consult-interest-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.consult-interest-preview span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.consult-interest-preview strong,
.consult-interest-preview small {
  transition: opacity 0.22s ease, transform 0.26s ease;
}

.consult-interest-preview strong {
  font-size: 0.98rem;
  color: var(--primary-deep);
  line-height: 1.22;
}

.consult-interest-preview small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.consult-interest-preview.is-switching strong,
.consult-interest-preview.is-switching small {
  opacity: 0;
  transform: translateY(6px);
}

.consult-trigger-affordance {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  padding-left: 6px;
}

.consult-trigger-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.1);
  background: rgba(15, 111, 95, 0.05);
  color: var(--primary-deep);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.consult-interest-dropdown.is-open .consult-trigger-icon {
  transform: rotate(180deg);
  background: rgba(15, 111, 95, 0.1);
  border-color: rgba(15, 111, 95, 0.18);
}

.consult-interest-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 22;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 111, 95, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 32px rgba(12, 74, 64, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 0.22s ease,
    transform 0.24s ease,
    visibility 0s linear 0.24s;
}

.consult-interest-dropdown.is-open .consult-interest-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.22s ease,
    transform 0.24s ease,
    visibility 0s linear 0s;
}

.consult-interest-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.consult-interest-option:hover,
.consult-interest-option:focus-visible,
.consult-interest-option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(15, 111, 95, 0.14);
  background: rgba(240, 248, 244, 0.96);
  box-shadow: 0 8px 16px rgba(12, 74, 64, 0.06);
}

.consult-interest-option:focus-visible {
  outline: 2px solid rgba(15, 111, 95, 0.24);
  outline-offset: 2px;
}

.consult-interest-option span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.consult-interest-option strong {
  color: var(--primary-deep);
  font-size: 0.95rem;
  line-height: 1.18;
}

.consult-interest-option small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

.consult-bear-compact::before {
  inset: auto 14% 10px;
  height: 16px;
}

.consult-bear-compact .bear-cap {
  width: 84px;
  height: 34px;
  top: 4px;
}

.consult-bear-compact .cap-band {
  left: 24px;
  right: 24px;
  bottom: -8px;
  height: 10px;
}

.consult-bear-compact .cap-tassel {
  top: 12px;
  right: 12px;
  height: 22px;
}

.consult-bear-compact .bear-ear {
  top: 30px;
  width: 26px;
  height: 26px;
  border-width: 3px;
}

.consult-bear-compact .bear-ear::after {
  inset: 6px;
}

.consult-bear-compact .bear-ear-left {
  left: calc(50% - 46px);
}

.consult-bear-compact .bear-ear-right {
  right: calc(50% - 46px);
}

.consult-bear-compact .bear-head {
  top: 34px;
  width: 90px;
  height: 86px;
  border-width: 3px;
}

.consult-bear-compact .bear-eye {
  top: 27px;
  width: 22px;
  height: 22px;
}

.consult-bear-compact .bear-eye-left {
  left: 14px;
}

.consult-bear-compact .bear-eye-right {
  right: 14px;
}

.consult-bear-compact .bear-pupil {
  width: 9px;
  height: 9px;
}

.consult-bear-compact .bear-muzzle {
  bottom: 12px;
  width: 42px;
  height: 28px;
}

.consult-bear-compact .bear-nose {
  width: 12px;
  height: 8px;
}

.consult-bear-compact .bear-smile {
  top: 14px;
  width: 14px;
  height: 7px;
  border-bottom-width: 2px;
}

.consult-bear-compact .bear-body {
  width: 96px;
  height: 72px;
  bottom: 10px;
  border-width: 3px;
}

.consult-bear-compact .bear-body::before {
  top: 12px;
  width: 50px;
  height: 36px;
  border-width: 2px;
}

.consult-bear-compact .bear-arm {
  width: 28px;
  height: 12px;
  border-width: 2px;
}

.consult-bear-compact .bear-arm-left {
  top: 92px;
  left: calc(50% - 48px);
}

.consult-bear-compact .bear-arm-right {
  top: 92px;
  left: calc(50% + 20px);
}

.consult-bear-compact .bear-diploma {
  top: 82px;
  left: calc(50% + 8px);
  min-width: 72px;
  max-width: 76px;
  padding: 5px 6px;
  font-size: 0.47rem;
  line-height: 1.16;
  border-radius: 10px;
}

.consult-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 140;
  max-width: min(420px, calc(100vw - 24px));
  padding: 14px 18px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(8, 45, 39, 0.96), rgba(12, 88, 74, 0.95)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.22) 0, transparent 58%);
  color: #f5fffb;
  border: 1px solid rgba(228, 244, 238, 0.18);
  box-shadow: 0 20px 40px rgba(7, 28, 23, 0.28);
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.consult-toast.is-active {
  opacity: 1;
  transform: translate(-50%, 0);
}

.consult-copy {
  display: grid;
  align-content: start;
  gap: 0;
  padding-right: clamp(24px, 3vw, 52px);
}

.consult-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.consult-benefit-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #d6e6df;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.1) 0, transparent 58%);
  box-shadow: 0 12px 24px rgba(12, 74, 64, 0.08);
}

.consult-benefit-card strong {
  color: var(--primary-deep);
}

.consult-benefit-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.consult-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(220px, 0.94fr);
  gap: 16px;
  align-items: stretch;
}

.consult-scene {
  position: relative;
  margin: 0;
  min-height: 286px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d5e5de;
  box-shadow: 0 20px 38px rgba(12, 74, 64, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.94));
}

.consult-scene img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  display: block;
}

.consult-scene figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(7, 28, 23, 0.86), rgba(7, 28, 23, 0.68)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.18) 0, transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f2fbf7;
  box-shadow: 0 18px 28px rgba(7, 28, 23, 0.22);
}

.consult-scene figcaption strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.consult-scene-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.consult-bear-panel {
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 12px;
  min-height: 286px;
  padding: 16px 16px 14px;
  border-radius: 24px;
  border: 1px solid #d5e5de;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.14) 0, transparent 52%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 244, 0.94));
  box-shadow: 0 18px 34px rgba(12, 74, 64, 0.1);
}

.consult-bear-note {
  margin: 0;
  text-align: center;
  color: #2f5a4f;
  font-size: 0.86rem;
  font-weight: 700;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseMeter {
  0%,
  100% {
    transform: scaleX(0.84);
    opacity: 0.72;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes partnerDrift {
  0%,
  100% {
    transform: translate3d(-16px, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(18px, -6px, 0) rotate(1deg);
  }
}

@keyframes partnerLogoFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-14px) scale(1.04);
  }
}

@keyframes partnerPhotoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(2.2deg) scale(1.03);
  }
}

@keyframes typedCaretBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.18;
  }
}

@keyframes heroSignalScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

body.perf-lite .australia-story-badge,
body.perf-lite .strategy-radar-meter span {
  animation: none !important;
}

html.theme-dark .soft-chip,
html.theme-dark .australia-story-hero,
html.theme-dark .australia-reason-card,
html.theme-dark .strategy-radar-intro,
html.theme-dark .strategy-radar-item,
html.theme-dark .gerimmi-proof-card,
html.theme-dark .gerimmi-number-band article,
html.theme-dark .partner-summary-visual,
html.theme-dark .story-feature-card,
html.theme-dark .story-quote,
html.theme-dark .enrollment-card {
  border-color: rgba(88, 132, 119, 0.42);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

html.theme-dark .soft-chip,
html.theme-dark .australia-reason-card,
html.theme-dark .strategy-radar-intro,
html.theme-dark .strategy-radar-item,
html.theme-dark .gerimmi-proof-card.tone-a,
html.theme-dark .gerimmi-proof-card.tone-b,
html.theme-dark .gerimmi-proof-card.tone-c,
html.theme-dark .gerimmi-proof-card.tone-d,
html.theme-dark .gerimmi-number-band article,
html.theme-dark .partner-summary-visual,
html.theme-dark .story-feature-card,
html.theme-dark .story-quote,
html.theme-dark .enrollment-card {
  background:
    linear-gradient(145deg, rgba(16, 35, 28, 0.98), rgba(12, 26, 21, 0.96));
}

html.theme-dark .australia-story-copy,
html.theme-dark .story-feature-copy {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.12) 0, transparent 48%),
    linear-gradient(160deg, rgba(16, 35, 28, 0.96), rgba(11, 24, 20, 0.92));
}

html.theme-dark .australia-story-badge {
  background: rgba(6, 14, 12, 0.78);
}

html.theme-dark .consult-scene {
  border-color: rgba(88, 132, 119, 0.42);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

html.theme-dark .consult-scene figcaption {
  border-color: rgba(255, 255, 255, 0.12);
}

html.theme-dark .consult-shell,
html.theme-dark .consult-form-card,
html.theme-dark .consult-proof-card,
html.theme-dark .consult-mascot-card {
  border-color: rgba(88, 132, 119, 0.42);
  background:
    linear-gradient(145deg, rgba(16, 35, 28, 0.98), rgba(12, 26, 21, 0.96));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

html.theme-dark .consult-proof-card span,
html.theme-dark .consult-form-head p,
html.theme-dark .consult-form-note,
html.theme-dark .consult-mascot-note {
  color: #b8cec5;
}

html.theme-dark .consult-proof-card strong,
html.theme-dark .consult-form-badge {
  color: #dff4ec;
}

html.theme-dark .consult-form-badge {
  background: rgba(15, 111, 95, 0.18);
}

html.theme-dark .hero-signal-strip {
  border-color: rgba(87, 138, 121, 0.3);
  background:
    linear-gradient(135deg, rgba(10, 28, 22, 0.94), rgba(11, 33, 27, 0.9)),
    radial-gradient(120% 120% at 0 0, rgba(237, 159, 45, 0.1) 0, transparent 45%);
}

html.theme-dark .hero-signal-track {
  color: #cbeee2;
}

html.theme-dark .strategy-index,
html.theme-dark .reason-index,
html.theme-dark .partner-summary-pills span {
  border-color: rgba(88, 132, 119, 0.44);
}

html.theme-dark .partner-summary-copy p,
html.theme-dark .australia-story-copy p,
html.theme-dark .australia-reason-card p,
html.theme-dark .strategy-radar-copy p,
html.theme-dark .story-quote,
html.theme-dark .gerimmi-number-band p,
html.theme-dark .partner-summary-route,
html.theme-dark .industry-summary {
  color: #b8cec5;
}

html.theme-dark .strategy-link,
html.theme-dark .gerimmi-proof-stat strong,
html.theme-dark .gerimmi-proof-stat span,
html.theme-dark .gerimmi-number-band strong,
html.theme-dark .number-label {
  color: #7fe0c8;
}

html.theme-dark .partner-summary-list li {
  border-color: rgba(71, 120, 104, 0.62);
  background:
    linear-gradient(160deg, rgba(11, 31, 25, 0.94), rgba(15, 39, 32, 0.92)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.18) 0, transparent 52%);
  color: #d8efe7;
}

html.theme-dark .partner-summary-route {
  background: rgba(8, 24, 19, 0.9);
  border-color: rgba(71, 120, 104, 0.6);
}

html.theme-dark .partner-refined-list li {
  border-color: rgba(71, 120, 104, 0.62);
  background:
    linear-gradient(160deg, rgba(11, 31, 25, 0.94), rgba(15, 39, 32, 0.92)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.18) 0, transparent 52%);
  color: #d8efe7;
}

html.theme-dark .partner-refined-pills span {
  border-color: rgba(79, 131, 114, 0.34);
  background: rgba(15, 111, 95, 0.16);
  color: #dff4ec;
}

html.theme-dark .visa-visual-chip {
  border-color: rgba(79, 131, 114, 0.34);
  background: rgba(7, 28, 23, 0.82);
  color: #effbf6;
}

html.theme-dark .partner-refined-caption,
html.theme-dark .partner-refined-rail span {
  color: #f1fbf7;
}

html.theme-dark .partner-simple-visual {
  border-color: rgba(71, 120, 104, 0.58);
}

html.theme-dark .industry-kicker {
  border-color: rgba(166, 213, 197, 0.34);
  background: linear-gradient(160deg, rgba(11, 90, 76, 0.98), rgba(20, 128, 109, 0.96));
  color: #fffdf4 !important;
  -webkit-text-fill-color: #fffdf4 !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.42),
    0 0 12px rgba(0, 0, 0, 0.22);
}

html.theme-dark .industry-card ul {
  color: #c6e7db;
}

html.theme-dark .industry-tags span {
  border-color: rgba(79, 131, 114, 0.32);
  background: rgba(15, 111, 95, 0.18);
  color: #dff4ec;
}

html.theme-dark .visa-highlight-panel {
  border-color: rgba(71, 120, 104, 0.62);
  background:
    linear-gradient(160deg, rgba(11, 31, 25, 0.94), rgba(15, 39, 32, 0.92)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.18) 0, transparent 52%);
}

html.theme-dark .visa-highlight-visual {
  border-color: rgba(71, 120, 104, 0.62);
}

html.theme-dark .footer-detail-list .detail-icon {
  background: linear-gradient(145deg, rgba(15, 111, 95, 0.2), rgba(237, 159, 45, 0.18));
  border-color: rgba(88, 132, 119, 0.28);
}

.visa-highlight {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  position: relative;
  isolation: isolate;
}

.visa-highlight::before {
  content: "";
  position: absolute;
  inset: auto auto -26px -16px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 95, 0.14) 0, rgba(15, 111, 95, 0.03) 58%, transparent 74%);
  z-index: -1;
}

.visa-highlight-visual {
  position: relative;
  margin: 0;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d4e5dd;
  box-shadow: 0 18px 34px rgba(11, 80, 68, 0.12);
}

.visa-highlight-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.visa-highlight-visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(7, 28, 23, 0.86), rgba(7, 28, 23, 0.68)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.22) 0, transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f2fbf7;
  box-shadow: 0 18px 32px rgba(7, 28, 23, 0.24);
}

.visa-visual-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(8, 45, 39, 0.82);
  border: 1px solid rgba(225, 243, 236, 0.18);
  box-shadow: 0 18px 32px rgba(7, 33, 29, 0.24);
  color: #effbf6;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.visa-chip-a {
  top: 18px;
  left: 18px;
}

.visa-chip-b {
  top: 68px;
  right: 18px;
}

.visa-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.visa-highlight-stack {
  display: grid;
  gap: 16px;
}

.visa-highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #cfe1da;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.95)),
    radial-gradient(120% 120% at 100% 0%, rgba(15, 111, 95, 0.08) 0, transparent 54%);
  box-shadow: 0 16px 28px rgba(11, 80, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.visa-highlight-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 95, 0.22);
  box-shadow: 0 22px 36px rgba(11, 80, 68, 0.12);
}

.visa-highlight-primary {
  min-height: 0;
}

.visa-highlight-secondary {
  min-height: 0;
}

.visa-highlight .btn {
  margin-top: auto;
  align-self: flex-start;
}

.blog-card {
  overflow: hidden;
  position: relative;
}

.blog-card div {
  padding: 0 14px 14px;
}

.blog-card-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  z-index: 2;
}

.blog-card-link:focus-visible {
  outline: 3px solid #9fd9c9;
  outline-offset: 2px;
}

.blog-card-link:hover,
.blog-card-link:focus-visible {
  text-decoration: none;
}

main {
  position: relative;
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 111, 95, 0), rgba(15, 111, 95, 0.28), rgba(237, 159, 45, 0.34), rgba(15, 111, 95, 0.28), rgba(15, 111, 95, 0));
  box-shadow: 0 -6px 18px rgba(15, 111, 95, 0.05);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(160px, 36vw);
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(237, 159, 45, 0.28) 0, rgba(15, 111, 95, 0.12) 58%, rgba(15, 111, 95, 0) 100%);
  pointer-events: none;
}

.blog-hero {
  padding-top: 54px;
}

.blog-tag {
  display: inline-flex;
  font-size: 0.77rem;
  border-radius: 999px;
  background: #edf8f4;
  color: var(--primary);
  padding: 2px 9px;
  font-weight: 700;
}

.consult {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid #d5e5de;
  border-radius: 28px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(15, 111, 95, 0.08) 0, transparent 42%),
    radial-gradient(110% 120% at 100% 0%, rgba(237, 159, 45, 0.12) 0, transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.94));
  box-shadow: 0 24px 44px rgba(12, 74, 64, 0.12);
}

.consult:focus-within {
  border-color: #93c8b6;
  box-shadow: 0 26px 46px rgba(15, 111, 95, 0.18);
}

.consult-form {
  display: grid;
  align-content: start;
  gap: 14px;
  background: #fff;
  border: 1px solid #d9e7e1;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 34px rgba(12, 74, 64, 0.1);
}

.consult-form-head {
  display: grid;
  gap: 6px;
}

.consult-form-head h3,
.consult-form-head p {
  margin: 0;
}

.consult-form-head p {
  color: var(--muted);
}

.consult-form-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.1);
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consult-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.consult-form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.consult-bear {
  position: relative;
  width: min(228px, 100%);
  margin-top: 0;
  min-height: 248px;
  height: 248px;
  display: block;
  overflow: visible;
  padding: 0;
}

.consult-bear::before {
  content: "";
  position: absolute;
  inset: auto 18% 8px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15, 111, 95, 0.12);
  filter: blur(6px);
}

.bear-cap {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 106px;
  height: 44px;
  z-index: 7;
  pointer-events: none;
}

.cap-board {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(145deg, #173447, #0f2430);
  box-shadow: 0 10px 16px rgba(8, 24, 33, 0.32);
}

.cap-band {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -11px;
  height: 14px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #18384d, #0f2936);
  border: 2px solid #e6b14d;
}

.cap-tassel {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 3px;
  height: 28px;
  background: #e6b14d;
  border-radius: 999px;
}

.cap-tassel::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e6b14d;
  box-shadow: 0 0 0 2px rgba(255, 230, 181, 0.45);
}

.bear-ear {
  position: absolute;
  top: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #9c6645;
  border: 4px solid #6a432d;
  z-index: 3;
  box-shadow: 0 8px 14px rgba(20, 12, 9, 0.2);
}

.bear-ear::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #c8926a;
}

.bear-ear-left {
  left: calc(50% - 66px);
}

.bear-ear-right {
  right: calc(50% - 66px);
}

.bear-head {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 122px;
  border-radius: 54% 54% 48% 48%;
  background: linear-gradient(180deg, #966042, #7f4f35);
  border: 4px solid #6b412b;
  z-index: 4;
}

.bear-eye {
  position: absolute;
  top: 38px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #5e3a28;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bear-eye::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #865539;
  transform-origin: top;
  transform: scaleY(0.02);
  animation: bearBlink 6.4s ease-in-out infinite;
}

.bear-eye-left {
  left: 20px;
}

.bear-eye-right {
  right: 20px;
}

.bear-pupil {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111b18;
  box-shadow: inset -2px -1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.08s linear;
}

.bear-muzzle {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 58px;
  height: 40px;
  border-radius: 50% 50% 45% 45%;
  background: #d9b08f;
  border: 2px solid #7a4e35;
  display: grid;
  place-items: center;
}

.bear-nose {
  width: 16px;
  height: 11px;
  border-radius: 40% 40% 50% 50%;
  background: #2a1b17;
}

.bear-smile {
  position: absolute;
  top: 20px;
  width: 18px;
  height: 9px;
  border-bottom: 3px solid #3b241d;
  border-radius: 0 0 16px 16px;
  transition:
    width 0.18s ease,
    height 0.18s ease,
    border-bottom-width 0.18s ease,
    border-bottom-color 0.18s ease,
    transform 0.18s ease;
}

.bear-smile::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  border: 2px solid transparent;
  border-top: 0;
  background: #7a2f2f;
  opacity: 0;
  transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.consult-bear.is-typing .bear-smile {
  width: 28px;
  height: 14px;
  border-bottom-width: 0;
  border-bottom-color: transparent;
  transform: translateY(1px);
  animation: bearSmilePop 0.36s ease-in-out infinite alternate;
}

.consult-bear.is-typing .bear-smile::after {
  width: 18px;
  height: 10px;
  opacity: 1;
  border-color: #3b241d;
}

.bear-body {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 138px;
  height: 104px;
  margin-top: 0;
  border-radius: 48% 48% 42% 42%;
  background: linear-gradient(180deg, #8c583a, #764931);
  border: 4px solid #633d2a;
  z-index: 2;
}

.bear-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 74px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c8926a, #b57a57);
  border: 3px solid rgba(99, 61, 42, 0.8);
}

.bear-arm {
  position: absolute;
  width: 42px;
  height: 15px;
  background: linear-gradient(180deg, #8b5739, #73472f);
  border: 3px solid #633d2a;
  border-radius: 999px;
  z-index: 3;
}

.bear-arm-right {
  top: 162px;
  left: calc(50% + 30px);
  transform: rotate(18deg);
}

.bear-arm-left {
  top: 162px;
  left: calc(50% - 72px);
  transform: rotate(-16deg);
}

.bear-diploma {
  position: absolute;
  top: 168px;
  left: calc(50% + 26px);
  min-width: 94px;
  max-width: 98px;
  padding: 7px 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f8fbfa);
  border: 1px solid #c8ddd4;
  box-shadow: 0 10px 16px rgba(10, 58, 49, 0.18);
  color: #18453d;
  font-weight: 800;
  font-size: 0.58rem;
  line-height: 1.2;
  text-align: center;
  z-index: 6;
  transform: rotate(-4deg);
}

.heart-icon {
  color: #da2a3a;
  margin: 0 2px;
}

body.perf-lite .bear-eye::after {
  animation: none;
  transform: scaleY(0.02);
}

body.perf-lite .consult-bear.is-typing .bear-smile {
  animation: none;
}

.program-hero .hero-visual img {
  min-height: 360px;
}

.program-hero .hero-text {
  font-size: 1.02rem;
  line-height: 1.75;
}

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

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

.program-grid-careers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-partner-grid,
.program-phase-visual-grid {
  display: grid;
  gap: 14px;
}

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

.program-phase-visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-partner-grid .industry-card,
.program-phase-visual-grid .industry-card,
.program-career-grid .industry-card {
  flex: 0 0 auto;
  min-height: 100%;
  height: 100%;
}

.program-partner-grid .industry-card img,
.program-phase-visual-grid .industry-card img,
.program-career-grid .industry-card img {
  height: 122px;
}

.program-partner-grid .industry-overlay,
.program-phase-visual-grid .industry-overlay,
.program-career-grid .industry-overlay {
  height: 122px;
}

.program-partner-grid .industry-content,
.program-phase-visual-grid .industry-content,
.program-career-grid .industry-content {
  padding: 0 12px 12px;
}

.program-partner-grid .industry-kicker,
.program-phase-visual-grid .industry-kicker,
.program-career-grid .industry-kicker {
  margin: -16px 0 0 10px;
  padding: 7px 11px;
  font-size: 0.7rem;
}

.program-partner-grid .industry-body,
.program-phase-visual-grid .industry-body,
.program-career-grid .industry-body {
  gap: 8px;
  padding: 14px 14px 13px;
}

.program-partner-grid .industry-card h3,
.program-phase-visual-grid .industry-card h3,
.program-career-grid .industry-card h3 {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.program-partner-grid .industry-summary,
.program-phase-visual-grid .industry-summary,
.program-career-grid .industry-summary {
  font-size: 0.84rem;
  line-height: 1.45;
}

.partner-company-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-company-label-global {
  background: linear-gradient(90deg, rgba(15, 111, 95, 0.14), rgba(237, 159, 45, 0.2));
  color: #0b5044;
}

.partner-company-label-local {
  background: rgba(15, 111, 95, 0.1);
  color: #0b5044;
}

.partner-company-name {
  display: inline-block;
  margin: 4px 0 2px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.partner-company-name::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6f5f, #3ebca0, #ed9f2d);
}

.program-partner-grid .industry-tags span,
.program-phase-visual-grid .industry-tags span,
.program-career-grid .industry-tags span {
  min-height: 28px;
  padding: 5px 9px;
  font-size: 0.72rem;
}

.program-career-grid .industry-action {
  min-height: 40px;
}

.program-value-section {
  position: relative;
}

.program-value-report {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.program-value-media {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d7e7e1;
  box-shadow: 0 22px 42px rgba(11, 80, 68, 0.12);
}

.program-value-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
}

.program-value-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px 26px;
  border-radius: 26px;
  border: 1px solid #d7e7e1;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.92));
  box-shadow: 0 20px 36px rgba(11, 80, 68, 0.1);
}

.program-value-copy p {
  margin: 0;
}

.program-value-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.program-value-points li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  color: #244a43;
  font-weight: 700;
  line-height: 1.5;
}

.program-value-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4em;
  border-radius: 999px;
  background: linear-gradient(145deg, #ed9f2d, #0f6f5f);
  box-shadow: 0 0 0 4px rgba(15, 111, 95, 0.08);
}

.program-value-note {
  color: #0f6f5f;
  font-weight: 700;
}

.program-value-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.program-value-intro {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(11, 80, 68, 0.96), rgba(15, 111, 95, 0.92)),
    radial-gradient(140% 140% at 100% 0, rgba(237, 159, 45, 0.2) 0, transparent 55%);
  color: #f5fbf8;
  border: 1px solid rgba(198, 226, 217, 0.22);
  box-shadow: 0 22px 42px rgba(11, 80, 68, 0.22);
}

.program-value-intro p {
  margin: 0;
  color: rgba(245, 251, 248, 0.9);
  line-height: 1.7;
}

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

.program-value-card {
  position: relative;
  padding: 22px 20px 20px 82px;
  border-radius: 24px;
  border: 1px solid #d8e7e1;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.95)),
    radial-gradient(120% 140% at 100% 0, rgba(15, 111, 95, 0.08) 0, transparent 58%);
  box-shadow: 0 18px 34px rgba(11, 80, 68, 0.08);
}

.program-value-card h3,
.program-value-card p {
  margin: 0;
}

.program-value-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.24;
}

.program-value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.program-value-index {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f6f5f, #0b5044);
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(11, 80, 68, 0.2);
}

@media (max-width: 1080px) {
  .program-partner-grid,
  .program-phase-visual-grid,
  .program-value-report,
  .program-value-shell,
  .program-value-grid,
  .program-grid-careers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-points,
  .program-partner-grid,
  .program-phase-visual-grid,
  .program-value-report,
  .program-value-shell,
  .program-value-grid,
  .program-grid-careers {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    font-size: 0.92rem;
  }

  .program-value-copy,
  .program-value-intro {
    padding: 22px 20px;
  }

  .program-value-card {
    padding: 20px 18px 18px 74px;
  }
}


.hybrid-proof-section {
  position: relative;
  padding: 0;
}

.hybrid-proof-report {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  align-items: stretch;
}

.hybrid-proof-media {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d7e7e1;
  box-shadow: 0 22px 42px rgba(11, 80, 68, 0.12);
}

.hybrid-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.hybrid-proof-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 30px;
  border-radius: 26px;
  border: 1px solid #d7e7e1;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.92));
  box-shadow: 0 20px 36px rgba(11, 80, 68, 0.1);
}

.hybrid-proof-copy h3,
.hybrid-proof-copy p {
  margin: 0;
}

.hybrid-proof-copy h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.24;
}

.hybrid-proof-copy .program-note {
  margin-top: 4px;
}

.hybrid-proof-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hybrid-proof-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hybrid-proof-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ed9f2d, #f4bc57);
  box-shadow: 0 0 0 5px rgba(237, 159, 45, 0.14);
}

.hybrid-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hybrid-proof-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid #d8e7e1;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 245, 0.92));
  box-shadow: 0 16px 28px rgba(11, 80, 68, 0.08);
}

.hybrid-proof-card h3,
.hybrid-proof-card p {
  margin: 0;
}

.hybrid-proof-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.hybrid-proof-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.hybrid-proof-badge {
  width: fit-content;
  min-width: 48px;
  height: 32px;
  margin-bottom: 12px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f6f5f, #0b5044);
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 22px rgba(11, 80, 68, 0.18);
}

html.theme-dark .program-value-intro {
  border-color: rgba(178, 214, 200, 0.16);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

html.theme-dark .program-value-copy,
html.theme-dark .program-value-card {
  border-color: rgba(178, 214, 200, 0.14);
  background: linear-gradient(160deg, rgba(10, 24, 20, 0.92), rgba(12, 34, 28, 0.88));
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

html.theme-dark .program-value-media {
  border-color: rgba(178, 214, 200, 0.14);
}

html.theme-dark .hero-points li {
  background: transparent;
  border-color: transparent;
  color: #e5f2ec;
}

html.theme-dark .program-value-points li,
html.theme-dark .program-value-note {
  color: #dcebe5;
}

html.theme-dark .program-value-card p {
  color: #b7cdc4;
}

html.theme-dark .hybrid-proof-media {
  border-color: rgba(178, 214, 200, 0.14);
}

html.theme-dark .hybrid-proof-copy {
  border-color: rgba(178, 214, 200, 0.14);
  background: linear-gradient(160deg, rgba(10, 24, 20, 0.92), rgba(12, 34, 28, 0.88));
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

html.theme-dark .hybrid-proof-copy h3 {
  color: #f6fffb;
}

html.theme-dark .hybrid-proof-points li,
html.theme-dark .hybrid-proof-card p {
  color: #c4d8d0;
}

html.theme-dark .hybrid-proof-card {
  border-color: rgba(178, 214, 200, 0.14);
  background: linear-gradient(160deg, rgba(10, 24, 20, 0.92), rgba(12, 34, 28, 0.88));
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

html.theme-dark .hybrid-proof-card h3 {
  color: #f3fffa;
}

html.theme-dark .partner-company-label-global {
  background: linear-gradient(90deg, rgba(137, 189, 165, 0.18), rgba(237, 159, 45, 0.22));
  color: #e3f8ee;
}

html.theme-dark .partner-company-label-local {
  background: rgba(137, 189, 165, 0.14);
  color: #def4eb;
}

html.theme-dark .partner-company-name {
  color: #f6fffb;
}

@media (max-width: 1080px) {
  .visa-report,
  .visa-grid-3,
  .visa-grid-4,
  .visa-benefit-report,
  .visa-pathway-report,
  .visa-cost-highlight,
  .hybrid-proof-report {
    grid-template-columns: 1fr;
  }

  .visa-training-scale {
    grid-template-columns: 1fr;
  }

  .hybrid-proof-section {
    padding: 0;
  }

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

@media (max-width: 760px) {
  .visa-field-copy,
  .visa-report-copy,
  .visa-pathway-report-copy,
  .visa-cost-copy,
  .hybrid-proof-copy {
    padding: 20px;
  }

  .visa-pathway-step {
    padding: 20px 18px 18px;
  }

  .visa-training-level {
    height: 110px;
  }

  .visa-cost-highlight {
    padding: 16px;
  }

  .hybrid-proof-section {
    padding: 0;
  }

  .hybrid-proof-grid {
    grid-template-columns: 1fr;
  }
}

.program-page-spaced .section + .section {
  margin-top: 28px;
}

.about-equal-block .report-block {
  align-items: stretch;
}

.about-equal-block .report-block img,
.about-equal-block .report-block .card {
  height: 100%;
  min-height: 320px;
}

.about-equal-block .report-block .card {
  display: grid;
  align-content: center;
}


.program-structure {
  display: grid;
  gap: 16px;
}

.program-structure-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.program-structure-phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.program-structure-copy {
  min-height: 100%;
}

.program-phase-step {
  min-height: 100%;
}

@media (max-width: 1080px) {
  .program-structure-context,
  .program-structure-phases {
    grid-template-columns: 1fr;
  }
}

.program-phase {
  border-left: 4px solid rgba(15, 111, 95, 0.35);
}

.program-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
}

.program-intro img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d1e0da;
  height: 200px;
  object-fit: cover;
}

.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.partner-card::before {
  background: linear-gradient(#0f6f5f, #39b69d);
}

.benefit-card::before {
  background: linear-gradient(#ed9f2d, #f1c26d);
}

.phase-vn img,
.phase-au img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  margin: 8px 0 10px;
  border: 1px solid #d6e4de;
}

.program-list {
  margin: 0;
  padding-left: 20px;
  color: #355145;
}

.program-list li + li {
  margin-top: 6px;
}

.program-master {
  display: grid;
  gap: 16px;
  border: 1px solid #bfd8ce;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 22px 44px rgba(8, 69, 59, 0.14);
  background:
    radial-gradient(140% 80% at 100% 0, rgba(237, 159, 45, 0.14), transparent 62%),
    radial-gradient(110% 90% at 0 0, rgba(15, 111, 95, 0.1), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 245, 0.96));
}

.program-master-top {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 14px;
  align-items: center;
}

.program-master-top > div {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #cde0d8;
  border-radius: 16px;
  padding: 16px;
}

.program-formula {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: linear-gradient(130deg, #edf8f4, #f8fcfa);
  border: 1px solid #bcdccf;
  border-radius: 12px;
  color: #0b5044;
  font-weight: 700;
}

.program-master-top img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #bfd8ce;
  box-shadow: 0 18px 30px rgba(12, 74, 64, 0.2);
}

.program-mini-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-mini-tags span {
  background: #ffffff;
  border: 1px solid #cfe1da;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #134e43;
}

.program-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.flow-step {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f5fbf8);
  border: 1px solid #cde1d9;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
}

.flow-step::before {
  content: attr(data-step);
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.5rem;
  color: rgba(15, 111, 95, 0.14);
  font-weight: 700;
}

.flow-step h3 {
  margin-bottom: 10px;
}

.flow-step.stage-vn {
  box-shadow: inset 0 0 0 1px rgba(15, 111, 95, 0.08);
}

.flow-step.stage-au {
  box-shadow: inset 0 0 0 1px rgba(237, 159, 45, 0.16);
}

.flow-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  align-self: center;
  font-size: 1.4rem;
  color: #0b5044;
  font-weight: 700;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c7ddd4;
  box-shadow: 0 10px 20px rgba(12, 74, 64, 0.14);
}

.program-master-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.program-master-foot > div {
  background: linear-gradient(150deg, #ffffff, #f8fcfa);
  border: 1px solid #cde1d9;
  border-radius: 16px;
  padding: 16px;
}

.program-master-foot h3 {
  margin: 0 0 10px;
}

.program-master-foot .btn {
  margin-top: 12px;
}

.program-note {
  margin: 2px 0 0;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px dashed #c8ddd4;
}

.program-timeline h3 {
  margin: 0 0 6px;
}

.register-steps {
  border-left: 5px solid rgba(15, 111, 95, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 246, 0.95));
}

.consult-steps {
  margin: 18px 0 16px;
  padding: 16px;
  border-radius: 18px;
  border-left: 5px solid rgba(15, 111, 95, 0.35);
  border: 1px solid #d5e5de;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 246, 0.95));
  box-shadow: 0 14px 26px rgba(12, 74, 64, 0.08);
}

.consult-steps h3 {
  margin: 0 0 10px;
}

.toc-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 244, 0.95));
  border: 1px solid #d5e5de;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(12, 74, 64, 0.12);
  padding: 18px;
}

.toc-compact {
  padding: 12px 14px;
  box-shadow: 0 12px 24px rgba(12, 74, 64, 0.1);
}

.toc-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
  touch-action: pan-y;
}

.toc-links a {
  flex: 0 0 auto;
  text-decoration: none;
  color: #0b5044;
  background: #fff;
  border: 1px solid #cfe1da;
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.toc-links a:hover {
  transform: translateY(-2px);
  background: #eff9f5;
  border-color: #9ecfbe;
  box-shadow: 0 10px 20px rgba(15, 111, 95, 0.14);
}

input,
select {
  border: 1px solid #c9d8d0;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #6ab8a2;
  box-shadow: 0 0 0 4px rgba(15, 111, 95, 0.14);
  transform: translateY(-1px);
}

.consult-form button.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 28px rgba(11, 80, 68, 0.25);
}

.form-message {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  color: #486156;
  padding: 42px clamp(18px, 2.8vw, 32px) 96px;
  font-size: 0.94rem;
  border-top: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 30px 30px 0 0;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(15, 111, 95, 0.1) 0, transparent 42%),
    radial-gradient(120% 90% at 100% 0%, rgba(237, 159, 45, 0.12) 0, transparent 38%),
    linear-gradient(180deg, rgba(248, 252, 250, 0.92), rgba(244, 250, 246, 0.78));
  overflow: hidden;
}

.site-footer > div {
  padding: 0 28px;
  border-right: 1px solid rgba(15, 111, 95, 0.1);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.site-footer > div:first-child {
  padding-left: 0;
}

.site-footer > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer-brand {
  color: #153c31;
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer p {
  margin: 0 0 6px;
}

.site-footer a {
  color: #0b5044;
  text-decoration: none;
}

.site-footer .btn,
.site-footer .btn:visited {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-title {
  margin-bottom: 12px !important;
  color: #173c32;
  font-weight: 700;
}

.footer-brand-line {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #153c31;
  font-weight: 600;
  max-width: 30ch;
}

.footer-brand-copy {
  color: #445f53;
  line-height: 1.7;
  max-width: 38ch;
  font-size: 1.02rem;
}

.footer-brand-name {
  color: #153c31;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: 24ch;
}

.footer-brand-desc {
  color: #445f53;
  line-height: 1.7;
  max-width: 38ch;
  font-size: 1rem;
}

.footer-detail-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.footer-detail-list li {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 14px;
  row-gap: 3px;
  padding-left: 0;
  min-height: 40px;
  align-content: center;
}

.footer-detail-list .detail-icon {
  width: 30px;
  height: 30px;
  align-self: center;
  justify-self: center;
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(15, 111, 95, 0.12), rgba(237, 159, 45, 0.12));
  border: 1px solid rgba(15, 111, 95, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  grid-row: 1 / span 2;
}

.footer-detail-list .detail-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #486257;
  font-weight: 700;
}

.footer-detail-list span {
  color: #123428;
  line-height: 1.45;
}

.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.footer-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid #cfe1da;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-link-list a:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(15, 111, 95, 0.12);
}

.footer-support-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 111, 95, 0.06);
  border: 1px dashed #b7d6cb;
}

.site-footer .btn:hover {
  text-decoration: none;
}

.footer-brand .footer-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #d5e5de;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 14px 30px rgba(11, 80, 68, 0.12);
}

.footer-links-wrap .btn {
  margin-top: 6px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 6px;
}

.social-chip {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #cfe1da;
  background: #ffffff;
  color: #0b5044;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(12, 74, 64, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.social-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-chip:hover {
  transform: translateY(-2px);
  border-color: #95c7b5;
  box-shadow: 0 12px 22px rgba(12, 74, 64, 0.14);
  text-decoration: none;
}

.faq-cta-box .hero-actions {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.faq-cta-box .hero-actions .btn {
  min-width: 220px;
}

.breadcrumb {
  font-size: 0.92rem;
  color: #60756b;
  margin-top: 4px;
}

.breadcrumb a {
  color: var(--primary-deep);
  text-decoration: none;
}

.post-layout {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 22px;
}

.post-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.post-meta {
  color: #5c7067;
  font-size: 0.92rem;
}

.post-cover {
  width: 100%;
  border-radius: 14px;
  max-height: 460px;
  object-fit: cover;
  margin: 8px 0 16px;
}

.post-content h2 {
  margin-top: 20px;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
  color: #42574d;
}

.post-refs a {
  color: var(--primary-deep);
  text-decoration: none;
}

.dmca-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #5b6f66;
}

html.theme-dark body {
  background:
    radial-gradient(120% 85% at 12% 0%, #112b23 0, transparent 56%),
    radial-gradient(95% 75% at 92% 0%, #2f2615 0, transparent 62%),
    radial-gradient(115% 75% at 50% 100%, #132c3f 0, transparent 66%),
    var(--bg);
}

html.theme-dark body::before {
  background-image:
    linear-gradient(rgba(122, 176, 158, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 176, 158, 0.08) 1px, transparent 1px);
}

html.theme-dark .site-header {
  background: linear-gradient(150deg, rgba(10, 28, 22, 0.88), rgba(13, 38, 30, 0.9));
  border-color: rgba(41, 78, 66, 0.95);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

html.theme-dark .site-header.island {
  background: linear-gradient(150deg, rgba(13, 35, 28, 0.92), rgba(15, 46, 36, 0.94));
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(47, 97, 81, 0.9) inset;
}

html.theme-dark nav a,
html.theme-dark .brand {
  color: var(--text);
}

html.theme-dark nav a:not(.btn):hover {
  background: rgba(110, 181, 158, 0.12);
}

html.theme-dark nav a.is-current {
  color: #ebf8f3;
  background: linear-gradient(145deg, rgba(31, 97, 81, 0.52), rgba(18, 67, 55, 0.72));
  box-shadow:
    inset 0 0 0 1px rgba(70, 131, 110, 0.95),
    0 12px 22px rgba(0, 0, 0, 0.18);
}

html.theme-dark .header-control-group {
  border-color: rgba(57, 96, 82, 0.95);
  background: linear-gradient(145deg, rgba(11, 34, 27, 0.94), rgba(14, 43, 34, 0.92));
}

html.theme-dark .lang-toggle-track {
  border-color: rgba(64, 108, 92, 0.95);
  background: linear-gradient(145deg, #18382e, #113128);
}

html.theme-dark .lang-option {
  color: #d6efe5;
}

html.theme-dark .card,
html.theme-dark .service-card,
html.theme-dark .why-card,
html.theme-dark .blog-card div,
html.theme-dark .post-layout,
html.theme-dark .faq-list-full details,
html.theme-dark .pillar-panel,
html.theme-dark .toc-panel,
html.theme-dark .consult-steps,
html.theme-dark .register-steps,
html.theme-dark .program-master,
html.theme-dark .program-master-top > div,
html.theme-dark .program-summary-side,
html.theme-dark .program-master-foot > div,
html.theme-dark .flow-step,
html.theme-dark .program-formula,
html.theme-dark .table-card,
html.theme-dark .consult-form,
html.theme-dark .site-footer,
html.theme-dark .home-blog-search input,
html.theme-dark .blog-search-input,
html.theme-dark input,
html.theme-dark select,
html.theme-dark .toc-links a,
html.theme-dark .quick-pill-list span,
html.theme-dark .social-chip,
html.theme-dark .filter-chip {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

html.theme-dark .btn-ghost {
  color: #9fdfcc;
  border-color: #366556;
}

html.theme-dark .section-head h2::after {
  box-shadow: 0 8px 18px rgba(20, 179, 146, 0.22);
}

html.theme-dark h1 {
  text-shadow: none;
}

html.theme-dark .hero-text,
html.theme-dark .card p,
html.theme-dark .service-card p,
html.theme-dark .faq-list-full p,
html.theme-dark .post-meta,
html.theme-dark .site-footer,
html.theme-dark .breadcrumb,
html.theme-dark .dmca-note,
html.theme-dark .program-note {
  color: var(--muted);
}

html.theme-dark .program-note {
  background: rgba(9, 30, 24, 0.6);
  border-color: rgba(70, 122, 104, 0.7);
}

html.theme-dark .faq-list-full summary,
html.theme-dark .cost-table thead th,
html.theme-dark .footer-detail-list .detail-label,
html.theme-dark .program-formula,
html.theme-dark .program-mini-tags span,
html.theme-dark .flow-arrow {
  color: var(--text);
}

html.theme-dark .cost-table thead th {
  background: #17362c;
}

html.theme-dark .program-mini-tags span {
  background: rgba(15, 34, 28, 0.92);
  border-color: rgba(88, 132, 119, 0.42);
}

html.theme-dark .vet-clean-badge,
html.theme-dark .pathway-spotlight-benefits,
html.theme-dark .vet-stage-card,
html.theme-dark .pathway-stage-card,
html.theme-dark .pathway-spotlight-marker {
  background: rgba(9, 30, 24, 0.72);
  border-color: rgba(70, 122, 104, 0.7);
  color: var(--text);
}

html.theme-dark .vet-clean,
html.theme-dark .pathway-spotlight {
  background:
    linear-gradient(145deg, rgba(9, 27, 22, 0.96), rgba(12, 34, 28, 0.92)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.12) 0, transparent 60%);
}

html.theme-dark .vet-clean-copy h3,
html.theme-dark .pathway-spotlight-intro h3,
html.theme-dark .vet-stage-card strong,
html.theme-dark .pathway-stage-card strong,
html.theme-dark .pathway-spotlight-marker strong {
  color: var(--text);
}

html.theme-dark .vet-stage-card small,
html.theme-dark .pathway-stage-card p,
html.theme-dark .pathway-spotlight-marker small {
  color: var(--muted);
}

html.theme-dark .vet-clean-note-row span,
html.theme-dark .pathway-chip-list span,
html.theme-dark .pathway-stage-card span {
  background: rgba(23, 54, 44, 0.9);
  border-color: rgba(88, 132, 119, 0.42);
  color: #dff6ee;
}

html.theme-dark .cost-table th,
html.theme-dark .cost-table td {
  border-color: #30574a;
}

html.theme-dark .cost-table thead th {
  background: #17362c;
  color: #d9eee5;
}

html.theme-dark .flow-arrow {
  background: #122d24;
  border-color: #2b5346;
  color: #b8ead9;
}

html.theme-dark .site-footer a,
html.theme-dark .post-refs a,
html.theme-dark .breadcrumb a {
  color: #91dbc7;
}

html.theme-dark .site-footer > div {
  border-color: rgba(88, 132, 119, 0.28);
  background: transparent;
  box-shadow: none;
}

html.theme-dark .site-footer {
  border-top-color: rgba(88, 132, 119, 0.28);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(15, 111, 95, 0.08) 0, transparent 42%),
    linear-gradient(180deg, rgba(10, 23, 18, 0.92), rgba(8, 19, 15, 0.78));
}

html.theme-dark .footer-detail-list span,
html.theme-dark .footer-support-note,
html.theme-dark .footer-brand p,
html.theme-dark .footer-contact p,
html.theme-dark .footer-links-wrap p {
  color: #c3d8d0;
}

html.theme-dark .footer-link-list a {
  background: rgba(15, 34, 28, 0.92);
  border-color: rgba(88, 132, 119, 0.42);
}

html.theme-dark .footer-brand-line {
  color: #f1fbf7;
}

html.theme-dark .footer-brand-copy {
  color: rgba(223, 244, 236, 0.82);
}

html.theme-dark .footer-brand-name {
  color: #f1fbf7;
}

html.theme-dark .footer-brand-desc {
  color: rgba(223, 244, 236, 0.82);
}

html.theme-dark .consult-info-card,
html.theme-dark .consult-form-card,
html.theme-dark .consult-proof-card,
html.theme-dark .enrollment-card {
  background:
    linear-gradient(145deg, rgba(9, 27, 22, 0.96), rgba(12, 34, 28, 0.92)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.12) 0, transparent 60%);
  border-color: rgba(70, 122, 104, 0.7);
}

html.theme-dark .consult-form-badge,
html.theme-dark .enrollment-step {
  background: rgba(23, 54, 44, 0.9);
  border-color: rgba(88, 132, 119, 0.42);
  color: #dff6ee;
}

html.theme-dark .consult-form-fields label {
  color: #d8ece4;
}

html.theme-dark .consult-interest-field {
  color: #f0fbf7;
}

html.theme-dark .consult-assessment-layout {
  border-color: rgba(70, 122, 104, 0.7);
  background:
    linear-gradient(145deg, rgba(9, 27, 22, 0.96), rgba(12, 34, 28, 0.92)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.12) 0, transparent 60%);
}

html.theme-dark .consult-minimal-shell {
  border-color: rgba(70, 122, 104, 0.7);
  background:
    linear-gradient(145deg, rgba(9, 27, 22, 0.96), rgba(12, 34, 28, 0.92)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.12) 0, transparent 60%);
}

html.theme-dark .consult-minimal-list li {
  color: #dff6ee;
}

html.theme-dark .visa-pathway-step {
  background: linear-gradient(150deg, rgba(16, 35, 28, 0.96), rgba(12, 29, 23, 0.94));
  border-color: var(--line);
}

html.theme-dark .visa-report-media,
html.theme-dark .visa-field-card,
html.theme-dark .visa-pathway-visual,
html.theme-dark .visa-benefit-media,
html.theme-dark .visa-pathway-report-media,
html.theme-dark .visa-cost-media {
  border-color: var(--line);
}

html.theme-dark .visa-field-card {
  background: linear-gradient(160deg, rgba(10, 24, 20, 0.92), rgba(12, 34, 28, 0.88));
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

html.theme-dark .visa-mini-card p,
html.theme-dark .visa-field-copy p,
html.theme-dark .visa-output-box p,
html.theme-dark .visa-cost-card p,
html.theme-dark .visa-training-card p:last-child,
html.theme-dark .visa-pathway-report-copy p,
html.theme-dark .visa-cost-copy p:last-child {
  color: #b7cdc4;
}

html.theme-dark .visa-output-box {
  background: rgba(137, 189, 165, 0.1);
  border-color: rgba(137, 189, 165, 0.16);
}

html.theme-dark .visa-training-scale span,
html.theme-dark .visa-training-badge {
  background: rgba(137, 189, 165, 0.1);
  border-color: rgba(137, 189, 165, 0.18);
  color: #def7ed;
}

html.theme-dark .visa-cost-highlight {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(137, 189, 165, 0.12) 0, transparent 42%),
    radial-gradient(120% 140% at 100% 0%, rgba(237, 159, 45, 0.14) 0, transparent 46%),
    linear-gradient(155deg, rgba(10, 24, 20, 0.94), rgba(12, 34, 28, 0.9));
  border-color: var(--line);
}

html.theme-dark .visa-pathway-tags span {
  background: rgba(137, 189, 165, 0.12);
  border-color: rgba(137, 189, 165, 0.18);
  color: #dff6ea;
}

html.theme-dark .visa-pathway-visual {
  border-color: var(--line);
}

html.theme-dark .consult-trigger-card,
html.theme-dark .consult-inline-form {
  border-color: rgba(70, 122, 104, 0.7);
  background:
    linear-gradient(145deg, rgba(11, 31, 25, 0.96), rgba(15, 37, 30, 0.94)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.1) 0, transparent 60%);
}

html.theme-dark .consult-inline-photo,
html.theme-dark .consult-form-card {
  border-color: rgba(70, 122, 104, 0.7);
  background:
    linear-gradient(145deg, rgba(11, 31, 25, 0.96), rgba(15, 37, 30, 0.94)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.1) 0, transparent 60%);
}

html.theme-dark .consult-meta-list li {
  border-color: rgba(70, 122, 104, 0.7);
  background:
    linear-gradient(145deg, rgba(11, 31, 25, 0.96), rgba(15, 37, 30, 0.94)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.1) 0, transparent 60%);
  color: #dff6ee;
}

html.theme-dark .consult-inline-bear {
  border-color: rgba(70, 122, 104, 0.7);
  background:
    linear-gradient(145deg, rgba(9, 27, 22, 0.96), rgba(12, 34, 28, 0.92)),
    radial-gradient(120% 130% at 100% 0, rgba(51, 145, 122, 0.12) 0, transparent 60%);
}

html.theme-dark .consult-select-shell select {
  background:
    linear-gradient(180deg, rgba(14, 32, 26, 0.98), rgba(17, 39, 32, 0.96)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.08) 0, transparent 54%);
}

html.theme-dark .consult-select-caret {
  border-color: #b9e9db;
}

html.theme-dark .consult-interest-trigger,
html.theme-dark .consult-interest-menu,
html.theme-dark .consult-interest-option {
  border-color: rgba(66, 108, 94, 0.8);
  background:
    linear-gradient(145deg, rgba(12, 32, 26, 0.96), rgba(15, 40, 32, 0.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(51, 145, 122, 0.12) 0, transparent 56%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 16px 28px rgba(0, 0, 0, 0.22);
}

html.theme-dark .consult-interest-preview strong,
html.theme-dark .consult-interest-option strong {
  color: #edf8f3;
}

html.theme-dark .consult-interest-preview small,
html.theme-dark .consult-interest-option small {
  color: #bdd8ce;
}

html.theme-dark .consult-mascot-note {
  color: #d2e8df;
}

html.theme-dark .consult-back-btn {
  border-color: rgba(88, 132, 119, 0.42);
  background:
    linear-gradient(145deg, rgba(14, 32, 26, 0.98), rgba(17, 39, 32, 0.96)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.06) 0, transparent 58%);
  color: #dff6ee;
}

html.theme-dark .consult-toast {
  background:
    linear-gradient(160deg, rgba(10, 31, 25, 0.98), rgba(16, 62, 51, 0.96)),
    radial-gradient(120% 120% at 100% 0%, rgba(237, 159, 45, 0.18) 0, transparent 58%);
  color: #effaf6;
}

html.theme-dark .program-list,
html.theme-dark .program-list li,
html.theme-dark .post-content ul,
html.theme-dark .post-content ol,
html.theme-dark .post-content li,
html.theme-dark .pillar-panel p,
html.theme-dark .visa-highlight > div p,
html.theme-dark .consult-bear-note {
  color: #c3d8d0;
}

html.theme-dark .visa-highlight > div,
html.theme-dark .blog-tag,
html.theme-dark .timeline span,
html.theme-dark .chat-panel,
html.theme-dark .chat-head,
html.theme-dark .chat-messages .bot,
html.theme-dark .chat-messages .user {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

html.theme-dark .chat-panel {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
}

html.theme-dark .chat-head button {
  color: var(--text);
}

html.theme-dark .chat-form {
  border-top-color: var(--line);
}

html.theme-dark .chat-form input {
  background: rgba(15, 34, 28, 0.92);
  border-color: rgba(88, 132, 119, 0.42);
  color: var(--text);
}

html.theme-dark .chat-quick-title {
  color: #b7cbc2;
}

html.theme-dark .chat-quick-btn {
  background: rgba(42, 179, 149, 0.12);
  border-color: rgba(42, 179, 149, 0.22);
  color: #d9f6ed;
}

html.theme-dark .chat-quick-btn:hover,
html.theme-dark .chat-quick-btn:focus-visible {
  background: rgba(42, 179, 149, 0.18);
  border-color: rgba(42, 179, 149, 0.3);
}

html.theme-dark .chat-link-pill {
  background: rgba(42, 179, 149, 0.16);
  border-color: rgba(42, 179, 149, 0.24);
  color: #d9f6ed;
}

html.theme-dark .chat-link-pill:hover,
html.theme-dark .chat-link-pill:focus-visible {
  background: rgba(42, 179, 149, 0.22);
  border-color: rgba(42, 179, 149, 0.36);
  color: #effcf7;
}

html.theme-dark .chat-handoff-button {
  background: linear-gradient(135deg, #1fa889, #19826b);
  color: #f7fffc;
}

html.theme-dark .faq-list-full details[open] summary,
html.theme-dark .faq-list-full summary:hover,
html.theme-dark .program-mini-tags span,
html.theme-dark .quick-pill-list span,
html.theme-dark .filter-chip,
html.theme-dark .blog-tag {
  color: var(--text);
}

html.theme-dark .timeline span {
  background: rgba(15, 111, 95, 0.18);
  color: #dff4ec;
}

html.theme-dark .pathway-spotlight-flow {
  background: rgba(9, 30, 24, 0.78);
  border-color: rgba(70, 122, 104, 0.7);
  color: var(--text);
}

html.theme-dark .post-layout h1,
html.theme-dark .post-layout h2,
html.theme-dark .post-layout h3,
html.theme-dark .faq-list-full summary,
html.theme-dark .pillar-panel h3,
html.theme-dark .visa-highlight h3 {
  color: var(--text);
}

html.theme-dark .post-content strong,
html.theme-dark .program-list strong,
html.theme-dark .pillar-panel strong {
  color: #e5f6ef;
}

.floating-btn {
  position: fixed;
  z-index: 50;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(11, 80, 68, 0.24);
}

.top-btn {
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--primary-deep);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
}

.support-main {
  right: 20px;
  bottom: 78px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 14px 28px rgba(8, 70, 62, 0.3);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.support-avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.pulse {
  animation: pulse 1.6s infinite;
}

.support-options {
  position: fixed;
  right: 24px;
  bottom: 160px;
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 56;
}

.support-options.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.support-option {
  border: none;
  border-radius: 999px;
  width: 56px;
  height: 56px;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.support-option:hover,
.support-option:focus-visible {
  transform: translateX(-4px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.support-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.support-option span {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  padding: 4px 8px;
}

.support-option::before {
  font-size: 1.2rem;
}

.support-option.zalo {
  background: #1778ff;
}

.support-option.zalo::before {
  content: none;
}

.support-option.messenger {
  background: #0a7cff;
}

.support-option.messenger::before {
  content: none;
}

.support-option.email {
  background: #ffffff;
}

.support-option.email::before {
  content: none;
}

.support-option.hotline {
  background: #ffbe00;
  color: #1f1f1f;
}

.support-option.hotline::before {
  content: "☎";
}

.support-option.office {
  background: #ff5a4d;
}

.support-option.office::before {
  content: "📍";
}

.support-option.ai {
  background: #0f6f5f;
  color: #fff;
}

.support-option.ai::before {
  content: "AI";
  font-size: 0.9rem;
}

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 130px;
  width: min(360px, calc(100% - 30px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  display: none;
  overflow: hidden;
  z-index: 60;
}

.chat-panel.show {
  display: block;
  animation: pop 0.22s ease;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #eff8f5;
}

.chat-head button {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-quick {
  padding: 10px 12px 0;
}

.chat-quick-title {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-quick-btn {
  border: 1px solid rgba(15, 111, 95, 0.14);
  background: rgba(15, 111, 95, 0.06);
  color: var(--primary-deep);
  border-radius: 999px;
  padding: 7px 10px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.chat-quick-btn:hover,
.chat-quick-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(15, 111, 95, 0.12);
  border-color: rgba(15, 111, 95, 0.22);
}

.chat-messages {
  max-height: 210px;
  overflow-y: auto;
  padding: 12px;
}

.chat-entry {
  margin: 0 0 10px;
}

.chat-messages p {
  margin: 0;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 0.92rem;
  white-space: pre-line;
}

.chat-messages .bot {
  background: #eef7f4;
}

.chat-messages .user {
  background: #fff7ea;
}

.chat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chat-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 111, 95, 0.16);
  background: rgba(15, 111, 95, 0.08);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.chat-link-pill:hover,
.chat-link-pill:focus-visible {
  transform: translateY(-1px);
  background: rgba(15, 111, 95, 0.14);
  border-color: rgba(15, 111, 95, 0.24);
  color: var(--primary-deep);
}

.chat-handoff-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6f5f, #0c5c4f);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 111, 95, 0.18);
}

.chat-form {
  display: flex;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding: 10px;
}

.chat-form input {
  flex: 1;
}

.chat-form button {
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes startupLogoPulse {
  from {
    transform: translateY(0) scale(0.98);
  }
  to {
    transform: translateY(-5px) scale(1.03);
  }
}

@keyframes startupOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes startupContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes startupLogoFlySmooth {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0.92;
    transform:
      translate3d(var(--loader-dx, 0px), var(--loader-dy, 0px), 0)
      scale(var(--loader-scale, 0.48));
  }
}

@keyframes startupBarMove {
  0% {
    left: -42%;
  }
  100% {
    left: 104%;
  }
}

@keyframes headerIntroIn {
  0% {
    opacity: 0;
    transform: translateY(-16px) scale(0.9);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  html {
    overflow-y: auto;
    height: auto;
    touch-action: auto;
  }

  body {
    overflow-y: visible;
    touch-action: auto;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    padding-top: calc(82px + env(safe-area-inset-top, 0px));
    overflow-x: hidden;
  }

  .site-header,
  main,
  .site-footer {
    width: min(1140px, calc(100% - 24px));
  }

  .site-header {
    --island-gap-max: 42px;
    --island-shrink-max: 0;
    --island-radius-max: 200px;
    --island-pad-y-max: 3px;
    --island-pad-x-max: 4px;
    position: fixed;
    left: calc(12px + (var(--island-gap-max) * var(--island-progress)));
    right: calc(12px + (var(--island-gap-max) * var(--island-progress)));
    margin: 0;
    top: calc(6px + env(safe-area-inset-top, 0px));
    width: auto;
    border-radius: calc(14px + (var(--island-radius-max) * var(--island-progress)));
    padding:
      calc(10px - (var(--island-pad-y-max) * var(--island-progress)))
      calc(12px - (var(--island-pad-x-max) * var(--island-progress)));
    transform: none;
    transition:
      left 0.22s linear,
      right 0.22s linear,
      padding 0.22s linear,
      border-radius 0.22s linear,
      transform 0.22s linear,
      box-shadow 0.28s ease,
      background 0.35s ease;
  }

  body.perf-lite .site-header {
    transition:
      left 0.14s linear,
      right 0.14s linear,
      padding 0.14s linear,
      border-radius 0.14s linear,
      transform 0.14s linear,
      box-shadow 0.18s ease;
  }

  .site-header.island {
    box-shadow:
      0 14px 28px rgba(7, 67, 57, 0.18),
      0 0 0 1px rgba(176, 221, 206, 0.82) inset;
  }

  .site-header .brand-logo {
    width: calc(40px - (12px * var(--island-progress)));
    height: calc(40px - (12px * var(--island-progress)));
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .site-header nav {
    position: fixed;
    left: 50%;
    right: auto;
    width: min(360px, calc(100vw - 24px));
    margin: 0;
    top: calc(var(--mobile-nav-top, 80px) + env(safe-area-inset-top, 0px));
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
    z-index: 40;
    max-height: calc(100dvh - (var(--mobile-nav-top, 80px) + env(safe-area-inset-top, 0px)) - 12px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
    border-color: transparent;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    max-height: 0;
    opacity: 0;
    transform-origin: top center;
    transform: translate(-50%, -12px) scale(0.94);
    transition:
      opacity 0.24s ease,
      transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
      max-height 0.3s ease,
      padding 0.3s ease,
      border-color 0.22s ease,
      box-shadow 0.28s ease,
      visibility 0s linear 0.28s;
    touch-action: pan-y;
  }

  .site-header nav.open {
    visibility: visible;
    pointer-events: auto;
    border-color: var(--line);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
    max-height: calc(100dvh - (var(--mobile-nav-top, 80px) + env(safe-area-inset-top, 0px)) - 12px);
    padding: 12px;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    transition:
      opacity 0.24s ease,
      transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
      max-height 0.3s ease,
      padding 0.3s ease,
      border-color 0.22s ease,
      box-shadow 0.28s ease,
      visibility 0s linear 0s;
  }

  .site-header nav a {
    padding: 8px 6px;
    border-radius: 8px;
    touch-action: manipulation;
  }

  .site-header nav .btn {
    width: 100%;
    justify-content: center;
  }

  .site-header nav .header-control-group {
    width: 100%;
    justify-content: center;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-width: none;
    padding: 4px 0;
  }

  .hero,
  .card-grid,
  .industry-fixed-grid,
  .program-grid-2,
  .program-grid-3,
  .vet-clean,
  .program-summary,
  .pathway-spotlight,
  .visa-highlight,
  .service-grid,
  .faq-grid,
  .blog-grid,
  .vet-showcase,
  .report-block,
  .why-grid,
  .why-stats,
  .consult,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .industry-card {
    flex-basis: min(86vw, 360px);
  }

  .cert-card {
    flex-basis: min(85vw, 340px);
  }

  .hero-visual img {
    min-height: 260px;
  }

  .hero {
    padding: 28px 0 18px;
    gap: 16px;
  }

  .section {
    padding: 28px 0;
  }

  .section-head-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-option span {
    display: none;
  }

  .home-blog-search input,
  .blog-search-input {
    min-width: 100%;
  }

  .toc-links {
    flex-wrap: wrap;
    overflow: visible;
    touch-action: auto;
  }

  .cert-slider-controls {
    display: none;
  }

  .cert-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    touch-action: auto;
  }

  .cert-card {
    flex: 1 1 auto;
  }

  .cert-more-hint {
    margin-top: 6px;
    font-size: 1rem;
  }

  .site-header nav .btn.btn-sm {
    width: 100%;
    padding: 12px 16px;
  }

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

  .program-visual-strip {
    grid-template-columns: 1fr;
  }

  .program-visual-strip img,
  .program-summary-side-image,
  .vet-clean-visual img,
  .pathway-spotlight-visual img {
    height: 168px;
  }

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

  .program-master-top,
  .program-flow,
  .program-master-foot {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .consult {
    padding: 18px;
    gap: 18px;
  }

  .consult-form {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head {
    margin-bottom: 14px;
  }

  .section-head p {
    margin-top: 6px;
  }

  .program-master,
  .register-steps,
  .toc-compact {
    border-radius: 14px;
  }

  .program-master-top img {
    height: 190px;
  }

  .hero-toc {
    margin-top: 4px;
  }

  .pathway-spotlight .btn {
    width: 100%;
  }
}

@media (min-width: 981px) {
  body {
    padding-top: 108px;
  }

  .site-header {
    position: fixed;
  }
}

@media (min-width: 981px) {
  .site-header.compact .header-control-group {
    max-width: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(12px) scale(0.9);
    border-color: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .site-header.compact .header-control-group .header-tool {
    opacity: 0;
    transform: scale(0.9);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
  }

  .australia-story,
  .strategy-radar,
  .gerimmi-proof {
    grid-template-columns: 1fr;
  }

  .strategy-radar-compact {
    grid-template-columns: 1fr;
  }

  .australia-story-hero,
  .partner-summary {
    grid-template-columns: 1fr;
  }

  .partner-refined,
  .visa-highlight {
    grid-template-columns: 1fr;
  }

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

  .australia-reason-stack,
  .gerimmi-proof-grid,
  .gerimmi-number-band,
  .enrollment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-shell {
    grid-template-columns: 1fr;
  }

  .consult-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .consult-assessment-layout {
    grid-template-columns: 1fr;
  }

  .consult-minimal-shell {
    grid-template-columns: 1fr;
  }

  .consult-form-wrap {
    padding-right: 0;
    justify-content: stretch;
  }

  .industry-fixed-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .australia-reason-card:nth-child(2),
  .australia-reason-card:nth-child(3) {
    transform: none;
  }

  .strategy-radar-item {
    grid-template-columns: 66px minmax(0, 1fr) 160px;
  }

  .strategy-radar-item-compact {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .partner-summary-visual {
    min-height: 300px;
  }

  .partner-refined-visual img,
  .visa-highlight-visual img,
  .strategy-compact-visual img {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .section-chip-row {
    justify-content: flex-start;
  }

  .australia-story-copy,
  .gerimmi-proof-main,
  .partner-summary-copy {
    padding: 20px;
  }

  .australia-reason-stack,
  .gerimmi-proof-grid,
  .gerimmi-number-band,
  .enrollment-grid,
  .consult-meta-list {
    grid-template-columns: 1fr;
  }

  .industry-fixed-grid {
    grid-template-columns: 1fr;
  }

  .visa-benefit-grid {
    grid-template-columns: 1fr;
  }

  .visa-pathway-step h3,
  .visa-pathway-step > p,
  .visa-output-box {
    min-height: 0;
  }

  .vet-clean-copy,
  .pathway-spotlight-copy,
  .partner-refined-copy,
  .australia-story-copy {
    padding-left: 0;
  }

  .vet-clean-copy::before,
  .pathway-spotlight-copy::before,
  .partner-refined-copy::before,
  .australia-story-copy::before {
    content: none;
  }

  .vet-stage-grid,
  .pathway-stage-grid {
    grid-template-columns: 1fr;
  }

  .vet-clean-stat,
  .pathway-spotlight-marker {
    position: static;
    max-width: none;
  }

  .vet-clean-visual,
  .pathway-spotlight-visual,
  .visa-highlight-visual {
    display: grid;
    gap: 12px;
  }

  .vet-clean-badge,
  .australia-story-badge,
  .partner-refined-logo,
  .partner-refined-rail,
  .partner-refined-caption,
  .visa-highlight-visual figcaption,
  .visa-visual-chip {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
  }

  .partner-refined-visual {
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  .partner-refined-visual::after {
    content: none;
  }

  .partner-refined-logo {
    width: 84px;
    height: 84px;
    padding: 12px;
    justify-self: start;
  }

  .partner-refined-rail {
    display: flex;
  }

  .partner-refined-caption,
  .visa-highlight-visual figcaption,
  .vet-clean-badge,
  .australia-story-badge {
    border-radius: 16px;
  }

  .pathway-cta-row {
    align-items: stretch;
  }

  .accent {
    display: block;
    white-space: normal;
    margin-top: 8px;
  }

  .accent-label {
    display: inline;
  }

  .hero-typed {
    display: inline;
  }

  .hero-typed::after {
    display: none;
  }

  .consult-shell {
    padding: 18px;
    gap: 18px;
  }

  .consult-assessment-layout {
    padding: 18px;
  }

  .consult-minimal-shell {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .consult-trigger-card {
    width: min(100%, 440px);
    margin: 8px auto 0;
  }

  .visa-pathway-showcase,
  .visa-pathway-grid {
    grid-template-columns: 1fr;
  }

  .consult-visual-strip {
    grid-template-columns: 1fr;
  }

  .australia-reason-card {
    padding-left: 82px;
  }

  .strategy-radar-item {
    grid-template-columns: 1fr;
  }

  .strategy-radar-item-compact {
    grid-template-columns: 1fr;
  }

  .strategy-index {
    width: 58px;
    height: 58px;
  }

  .strategy-radar-item img {
    height: 188px;
  }

  .partner-summary {
    gap: 16px;
  }

  .partner-summary-visual {
    min-height: 270px;
  }

  .partner-summary-logo {
    width: 130px;
    height: 130px;
    padding: 18px;
  }

  .partner-summary-photo.photo-a {
    left: 14px;
    width: 38%;
  }

  .partner-summary-photo.photo-b {
    right: 14px;
    width: 40%;
    bottom: 70px;
  }

  .partner-summary-route {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 0.78rem;
  }

  .partner-refined {
    gap: 16px;
  }

  .partner-simple {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-simple-visual,
  .partner-simple-visual img {
    min-height: 240px;
  }

  .partner-refined-visual {
    min-height: 280px;
  }

  .partner-refined-logo {
    width: 96px;
    height: 96px;
    padding: 14px;
  }

  .partner-refined-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }

  .visa-highlight-visual img {
    min-height: 260px;
  }

  .pathway-spotlight-flow {
    position: static;
  }

  .visa-visual-chip {
    position: static;
    width: fit-content;
  }

  .support-main {
    right: 14px;
    bottom: 70px;
    width: 62px;
    height: 62px;
  }

  .support-options {
    right: 16px;
    bottom: 138px;
  }

  .support-option {
    width: 52px;
    height: 52px;
  }

  .chat-panel {
    right: 10px;
    bottom: 110px;
    width: min(360px, calc(100% - 20px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-signal-track,
  .australia-story-badge,
  .strategy-radar-meter span,
  .partner-summary-photo {
    animation: none !important;
  }

  .site-header,
  .site-header.island {
    transition: none;
  }
}

@media (max-width: 640px) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .section-head h2::after {
    height: 4px;
  }

  h1 {
    font-size: clamp(1.52rem, 7.4vw, 2rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .toc-links a {
    text-align: center;
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .vet-visual {
    min-height: 300px;
  }

  .vet-clean-visual {
    min-height: 260px;
  }

  .vet-main-object {
    left: 8px;
    right: 8px;
  }

  .vet-float-card {
    width: 42%;
    top: 22px;
  }

  .vet-corner-chip {
    width: 40%;
    right: 4px;
    bottom: 12px;
  }

  .industry-card {
    min-height: 260px;
  }

  .hero {
    gap: 16px;
  }

  .hero-typed {
    min-width: 0;
    opacity: 1;
  }

  .accent {
    font-size: 0.92em;
    line-height: 1.18;
    white-space: normal;
  }

  .program-hero .accent {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.16em;
    align-items: start;
  }

  .program-hero .accent-label {
    display: block;
  }

  .program-hero .hero-typed {
    display: inline-block;
    min-width: 0;
    min-height: 1.2em;
    white-space: nowrap;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.58;
  }

  .toc-panel.hero-toc {
    padding: 14px;
  }

  .why-stats strong {
    font-size: 1.7rem;
  }

  .why-card,
  .card,
  .service-card {
    padding: 16px;
  }

  .hero {
    gap: 14px;
    padding: 18px 0 10px;
  }

  .consult-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .consult-assessment-layout {
    padding: 14px;
    border-radius: 22px;
  }

  .consult-minimal-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .consult-trigger-card,
  .consult-form-card {
    width: 100%;
    padding: 14px;
    border-radius: 20px;
  }

  .consult-form-card-minimal {
    width: 100%;
  }

  .consult-form-step {
    padding-right: 0;
    min-height: auto;
  }

  .consult-form-fields label {
    font-size: 0.94rem;
  }

  .consult-form-inline {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div {
    padding: 0;
    border-right: 0;
  }

  .consult-inline-bear {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }

  .consult-inline-photo,
  .consult-inline-photo img {
    min-height: 150px;
  }

  .consult-bear-compact {
    width: 72px;
    height: 92px;
    min-height: 92px;
    transform: none;
  }

  .support-main {
    width: 58px;
    height: 58px;
    right: 12px;
    bottom: 66px;
  }

  .support-options {
    right: 12px;
    bottom: 126px;
    gap: 8px;
  }

  .support-option {
    width: 48px;
    height: 48px;
  }

  .bear-head {
    top: 34px;
    width: 106px;
    height: 100px;
  }

  .bear-ear {
    top: 28px;
    width: 34px;
    height: 34px;
  }

  .bear-ear-left {
    left: calc(50% - 56px);
  }

  .bear-ear-right {
    right: calc(50% - 56px);
  }

  .bear-eye {
    width: 26px;
    height: 26px;
    top: 30px;
  }

  .bear-eye-left {
    left: 16px;
  }

  .bear-eye-right {
    right: 16px;
  }

  .bear-body {
    width: 104px;
    height: 74px;
    bottom: 8px;
  }

  .bear-pupil {
    width: 10px;
    height: 10px;
  }

  .bear-smile {
    width: 15px;
    top: 19px;
    border-bottom-width: 2px;
  }

  .bear-cap {
    width: 96px;
    height: 42px;
    top: 4px;
  }

  .cap-band {
    left: 27px;
    right: 27px;
    bottom: -8px;
    height: 11px;
  }

  .cap-tassel {
    height: 20px;
    top: 14px;
    right: 12px;
  }

  .bear-arm-right {
    top: 122px;
    left: calc(50% + 22px);
    width: 34px;
    height: 14px;
  }

  .bear-arm-left {
    top: 122px;
    left: calc(50% - 56px);
    width: 34px;
    height: 14px;
  }

  .bear-diploma {
    top: 118px;
    left: calc(50% + 34px);
    min-width: 88px;
    max-width: 94px;
    padding: 6px 7px;
    font-size: 0.56rem;
    line-height: 1.24;
  }

  input,
  select {
    padding: 10px 11px;
  }

  .site-header nav {
    left: 50%;
    right: auto;
    width: min(360px, calc(100vw - 16px));
    border-radius: 12px;
    padding: 10px;
  }

  .theme-toggle,
  .lang-toggle-track {
    height: 36px;
  }

  .theme-toggle {
    width: 36px;
  }

  .lang-toggle-track {
    width: 68px;
  }

  .lang-toggle-thumb {
    width: 29px;
    height: 28px;
  }

  .lang-toggle.is-en .lang-toggle-thumb {
    transform: translateX(32px);
  }

  .hero-visual {
    border-radius: 16px;
  }

  .hero-visual img {
    min-height: 220px;
    max-height: 280px;
  }

  .card-grid,
  .blog-grid,
  .faq-grid,
  .why-grid {
    gap: 10px;
  }

  .card,
  .why-card,
  .service-card,
  .blog-card div {
    padding: 14px;
  }

  .program-master {
    padding: 12px;
    gap: 10px;
  }

  .flow-step,
  .program-master-foot > div,
  .program-master-top > div {
    padding: 12px;
  }

  .program-master-top img {
    height: 170px;
  }

  .consult-form .btn,
  .home-blog-search .btn {
    width: 100%;
    min-height: 44px;
  }

  .panel-journey {
    gap: 6px;
  }

  .panel-journey a {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 90px;
    gap: 8px;
  }

  .consult-toast {
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 14px;
  }
}

@keyframes objectFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes mobileGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(228, 3, 47, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(228, 3, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(228, 3, 47, 0);
  }
}

@keyframes bearBlink {
  0%,
  44%,
  100% {
    transform: scaleY(0.02);
  }
  46%,
  48% {
    transform: scaleY(1);
  }
}

@keyframes bearSmilePop {
  0% {
    transform: translateY(1px) scaleX(1);
  }
  100% {
    transform: translateY(2px) scaleX(1.06);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.09);
  }
}

@keyframes ctaRing {
  0% {
    opacity: 0.95;
    transform: scale(0.96);
  }
  70% {
    opacity: 0.46;
    transform: scale(1.09);
  }
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes ctaHalo {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes heroCtaPulse {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1.02);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    filter: brightness(1.1);
  }
}

@keyframes heroCtaRing {
  0% {
    opacity: 0.72;
    transform: scale(0.97);
  }
  70% {
    opacity: 0.26;
    transform: scale(1.06);
  }
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

@keyframes heroCtaSweep {
  0% {
    left: -35%;
  }
  100% {
    left: 130%;
  }
}
