@font-face {
  font-family: "Harborline Sans";
  src: url("./assets/fonts/AlibabaPuHuiTi-2-55-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Harborline Sans";
  src: url("./assets/fonts/AlibabaPuHuiTi-2-65-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Harborline Sans";
  src: url("./assets/fonts/AlibabaPuHuiTi-2-75-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Harborline Sans";
  src: url("./assets/fonts/AlibabaPuHuiTi-2-85-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #005ea8;
  --navy-strong: #084e88;
  --blue: #18a6ef;
  --blue-deep: #068fd4;
  --ink: #16314d;
  --muted: #5f748c;
  --line: #d6e7f4;
  --surface: #f7fbfe;
  --surface-strong: #edf7fd;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(18, 61, 101, 0.1);
  --shadow-hover: 0 26px 64px rgba(18, 61, 101, 0.16);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Harborline Sans", "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1180px, calc(100% - 32px));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 94, 168, 0.08);
  box-shadow: 0 10px 28px rgba(16, 67, 112, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 60px;
  border-radius: 6px;
}

.brand span {
  color: var(--navy-strong);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-shell {
  padding-top: 74px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a,
.header-actions button {
  min-height: 42px;
  min-width: 110px;
  align-items: center;
  text-align: center;
}

.main-nav a {
  color: rgba(8, 78, 136, 0.82);
  position: relative;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  background: rgba(24, 166, 239, 0.08);
  color: var(--navy-strong);
  transform: translateY(-1px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(24, 166, 239, 0.88);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active {
  color: var(--navy-strong);
}

.main-nav a.is-active {
  background: rgba(24, 166, 239, 0.1);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.backend-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  border-left: 1px solid rgba(0, 94, 168, 0.14);
}

.header-utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-track-link {
  position: relative;
  color: var(--navy-strong);
  padding: 0 1px;
}

.header-track-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(8, 78, 136, 0.4);
  transform: scaleX(0.22);
  transform-origin: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-track-link:hover {
  color: var(--navy);
}

.header-track-link:hover::after {
  background: var(--navy);
  transform: scaleX(1);
}

.header-login-link {
  padding: 0 14px;
  border: 1px solid rgba(0, 94, 168, 0.2);
  background: rgba(24, 166, 239, 0.08);
  color: var(--navy-strong);
}

.header-login-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-current,
.lang-option {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  min-width: 108px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(0, 94, 168, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-strong);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
  position: relative;
}

.lang-current:hover,
.lang-switch.is-open .lang-current {
  border-color: rgba(24, 166, 239, 0.32);
  box-shadow: 0 12px 28px rgba(8, 78, 136, 0.1);
  background: var(--white);
  transform: translateY(-1px);
}

.lang-icon {
  width: 16px;
  height: 16px;
  border: 1.6px solid rgba(8, 78, 136, 0.72);
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}

.lang-icon::before,
.lang-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lang-icon::before {
  width: 8px;
  height: 100%;
  border-left: 1px solid rgba(8, 78, 136, 0.52);
  border-right: 1px solid rgba(8, 78, 136, 0.52);
  border-radius: 999px;
}

.lang-icon::after {
  width: 100%;
  height: 6px;
  border-top: 1px solid rgba(8, 78, 136, 0.52);
  border-bottom: 1px solid rgba(8, 78, 136, 0.52);
}

.lang-label {
  flex: 1;
  text-align: left;
}

.lang-caret {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid rgba(8, 78, 136, 0.62);
  border-bottom: 1.8px solid rgba(8, 78, 136, 0.62);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.lang-switch.is-open .lang-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  min-width: 100%;
  display: none;
  padding: 8px;
  border: 1px solid rgba(0, 94, 168, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(8, 78, 136, 0.14);
  backdrop-filter: blur(12px);
}

.lang-switch.is-open .lang-menu {
  display: grid;
  gap: 4px;
}

.lang-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  color: rgba(8, 78, 136, 0.84);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  justify-content: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(24, 166, 239, 0.1);
  color: var(--navy-strong);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 94, 168, 0.16);
  border-radius: 12px;
  background: rgba(24, 166, 239, 0.05);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-strong);
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  min-height: 50px;
  padding: 12px 22px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 149, 218, 0.18);
}

.primary-button:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 125, 188, 0.22);
}

.ghost-button {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.ghost-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.ghost-button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding: 100px 0 72px;
  overflow: hidden;
}

.page-hero-light {
  background:
    radial-gradient(circle at top right, rgba(24, 166, 239, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #eef7fd 100%);
}

.page-hero-navy {
  background:
    radial-gradient(circle at top right, rgba(24, 166, 239, 0.2), transparent 30%),
    linear-gradient(180deg, #0b5d9d 0%, #0a4f87 100%);
  color: var(--white);
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy-panel {
  padding: 32px 34px;
  border-radius: 28px;
  border: 1px solid rgba(0, 94, 168, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 252, 255, 0.72) 100%);
  box-shadow: 0 24px 54px rgba(8, 78, 136, 0.12);
  backdrop-filter: blur(14px);
}

.page-hero-navy .page-hero-copy-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 28px 56px rgba(2, 28, 52, 0.16);
}

.page-hero-banner {
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.page-hero-media,
.page-hero-banner-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-banner-overlay {
  background:
    linear-gradient(90deg, rgba(3, 38, 66, 0.78) 0%, rgba(7, 58, 98, 0.58) 36%, rgba(8, 90, 146, 0.24) 100%),
    linear-gradient(180deg, rgba(3, 33, 58, 0.14) 0%, rgba(3, 33, 58, 0.22) 100%);
}

.page-hero-banner-overlay-light {
  background:
    linear-gradient(90deg, rgba(5, 48, 82, 0.72) 0%, rgba(8, 70, 116, 0.46) 36%, rgba(8, 90, 146, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 33, 58, 0.08) 0%, rgba(3, 33, 58, 0.18) 100%);
}

.page-hero-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 130px 0 76px;
}

.page-hero-banner-content .page-hero-copy-panel {
  max-width: 700px;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(4, 47, 82, 0.72) 0%, rgba(7, 66, 112, 0.56) 100%);
  box-shadow: 0 24px 60px rgba(2, 29, 52, 0.26);
}

.page-hero-banner-content .page-hero-content h1 {
  color: var(--white);
}

.page-hero-banner-content .page-hero-content p,
.page-hero-banner-content .page-hero-note,
.page-hero-banner-content .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero-banner-stats {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: min(420px, 40%);
  min-height: 160px;
}

.page-hero-banner-stats .page-hero-stat-a {
  left: auto;
  right: 180px;
  bottom: 0;
}

.page-hero-banner-stats .page-hero-stat-b {
  right: 0;
  top: 0;
}

.page-hero-content {
  display: grid;
  gap: 18px;
}

.page-hero-content h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.35rem, 4.8vw, 4.15rem);
  line-height: 1.08;
  font-weight: 700;
}

.page-hero-content p {
  margin: 0;
  max-width: 760px;
  line-height: 1.8;
  color: var(--muted);
}

.page-hero-navy .page-hero-content p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.page-hero-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(0, 94, 168, 0.1);
  box-shadow: 0 24px 56px rgba(8, 78, 136, 0.14);
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(2, 36, 63, 0.18) 100%);
}

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

.page-hero-art {
  position: absolute;
  inset: 0;
}

.page-hero-visual-service::before,
.page-hero-visual-about::before,
.page-hero-visual-resource::before,
.page-hero-visual-contact::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
}

.page-hero-visual-resource {
  background:
    radial-gradient(circle at 82% 16%, rgba(24, 166, 239, 0.28), transparent 24%),
    linear-gradient(145deg, #0d5f9d 0%, #0a4e86 100%);
}

.page-hero-visual-contact {
  background:
    radial-gradient(circle at 18% 22%, rgba(24, 166, 239, 0.24), transparent 22%),
    linear-gradient(145deg, #eaf6fd 0%, #d7edf9 100%);
}

.page-hero-art-resource,
.page-hero-art-contact {
  z-index: 1;
}

.resource-art-card,
.resource-art-pill,
.contact-art-node,
.contact-art-line,
.contact-art-ring {
  position: absolute;
}

.resource-art-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 44px rgba(3, 28, 52, 0.16);
}

.resource-art-card-a {
  left: 36px;
  top: 46px;
  width: 178px;
  height: 118px;
}

.resource-art-card-b {
  right: 42px;
  top: 74px;
  width: 154px;
  height: 92px;
}

.resource-art-card-c {
  left: 104px;
  bottom: 42px;
  width: 208px;
  height: 104px;
}

.resource-art-pill {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.resource-art-pill-a {
  left: 58px;
  top: 72px;
  width: 94px;
  box-shadow: 0 28px 0 rgba(255, 255, 255, 0.3), 0 56px 0 rgba(255, 255, 255, 0.16);
}

.resource-art-pill-b {
  right: 72px;
  bottom: 82px;
  width: 110px;
  box-shadow: 0 24px 0 rgba(255, 255, 255, 0.24);
}

.contact-art-node {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d7bc4 0%, #1aa7ef 100%);
  box-shadow: 0 0 0 10px rgba(24, 166, 239, 0.1);
}

.contact-art-node-a {
  left: 72px;
  top: 72px;
}

.contact-art-node-b {
  right: 84px;
  top: 92px;
}

.contact-art-node-c {
  left: 128px;
  bottom: 84px;
}

.contact-art-node-d {
  right: 118px;
  bottom: 62px;
}

.contact-art-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(13, 123, 196, 0.8) 0%, rgba(26, 167, 239, 0.45) 100%);
}

.contact-art-line-a {
  left: 86px;
  top: 80px;
  width: 210px;
  transform: rotate(8deg);
}

.contact-art-line-b {
  left: 138px;
  bottom: 92px;
  width: 180px;
  transform: rotate(-18deg);
}

.contact-art-line-c {
  left: 82px;
  top: 88px;
  width: 86px;
  transform: rotate(56deg);
}

.contact-art-ring {
  left: 50%;
  top: 50%;
  width: 212px;
  height: 212px;
  border-radius: 999px;
  border: 1px dashed rgba(13, 123, 196, 0.28);
  transform: translate(-50%, -50%);
}

.page-hero-stat {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 150px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 40px rgba(8, 78, 136, 0.16);
  backdrop-filter: blur(14px);
}

.page-hero-stat strong {
  color: var(--navy-strong);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
}

.page-hero-stat span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.page-hero-stat-a {
  left: 20px;
  bottom: 22px;
}

.page-hero-stat-b {
  right: 20px;
  top: 22px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 252, 255, 0.95) 0%, rgba(237, 247, 253, 0.84) 38%, rgba(12, 108, 182, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(12, 108, 182, 0.12) 100%);
}

.hero-overlay-strong {
  background:
    linear-gradient(95deg, rgba(248, 252, 255, 0.98) 0%, rgba(241, 249, 254, 0.9) 34%, rgba(18, 166, 239, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 94, 168, 0.14) 100%);
}

.hero-home .hero-overlay-strong {
  background:
    linear-gradient(90deg, rgba(3, 38, 66, 0.74) 0%, rgba(7, 58, 98, 0.58) 34%, rgba(8, 90, 146, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 33, 58, 0.14) 0%, rgba(3, 33, 58, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 138px 0 88px;
  color: var(--ink);
}

.hero-content h1,
.section-heading h2,
.text-stack h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-content h1 {
  max-width: 690px;
  font-size: clamp(2.85rem, 5.8vw, 4.7rem);
  line-height: 1.01;
  color: var(--navy-strong);
}

.hero-content p {
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  display: grid;
  gap: 14px;
  padding: 22px 24px 20px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(0, 94, 168, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(9, 81, 138, 0.1);
  backdrop-filter: blur(14px);
}

.hero-home {
  min-height: 760px;
}

.hero-home-content {
  position: relative;
  min-height: 600px;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy-panel {
  max-width: 680px;
  padding: 34px 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(4, 47, 82, 0.72) 0%, rgba(7, 66, 112, 0.56) 100%);
  box-shadow: 0 24px 60px rgba(2, 29, 52, 0.26);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.hero-outline-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-outline-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--navy);
  background: var(--white);
}

.hero-copy-panel .eyebrow.blue {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy-panel h1 {
  color: var(--white);
}

.hero-copy-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-home .hero-copy-panel {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.hero-visual-stack {
  display: grid;
  gap: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(460px, 42%);
}

.hero-scene {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 168, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(232, 245, 252, 0.86) 52%, rgba(212, 236, 249, 0.94) 100%);
  box-shadow: 0 30px 70px rgba(8, 78, 136, 0.16);
  transform: perspective(1500px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.22s ease-out;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.hero-scene-grid,
.hero-scene-lane,
.hero-scene-card,
.hero-scene-badge,
.hero-scene-glow {
  position: absolute;
}

.hero-scene-grid {
  inset: 0;
  background:
    linear-gradient(rgba(0, 94, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 94, 168, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 94%);
}

.hero-scene-glow {
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.85;
}

.hero-scene-glow-a {
  width: 180px;
  height: 180px;
  top: 28px;
  right: 48px;
  background: rgba(24, 166, 239, 0.32);
  animation: heroPulse 8s ease-in-out infinite;
}

.hero-scene-glow-b {
  width: 140px;
  height: 140px;
  left: 44px;
  bottom: 42px;
  background: rgba(0, 94, 168, 0.16);
  animation: heroPulse 7s ease-in-out infinite reverse;
}

.hero-scene-lane {
  left: 50%;
  width: 360px;
  height: 74px;
  border-radius: 18px;
  transform: translateX(-50%) rotate(-18deg);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(24, 166, 239, 0.18) 48%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-scene-lane::after {
  content: "";
  position: absolute;
  inset: 50% 18px auto;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.82) 15%, rgba(255, 255, 255, 0.82) 85%, transparent 100%);
  opacity: 0.72;
}

.hero-scene-lane-a {
  bottom: 146px;
  animation: laneFloat 7s ease-in-out infinite;
}

.hero-scene-lane-b {
  bottom: 84px;
  width: 300px;
  opacity: 0.9;
  animation: laneFloat 8s ease-in-out infinite reverse;
}

.hero-scene-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(233, 245, 252, 0.92) 100%);
  box-shadow: 0 18px 44px rgba(12, 92, 155, 0.16);
  backdrop-filter: blur(12px);
}

.hero-scene-card-main {
  left: 52px;
  top: 62px;
  width: 270px;
  padding: 24px 24px 20px;
  transform: translateZ(30px);
  animation: heroCardMain 7.5s ease-in-out infinite;
}

.scene-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(24, 166, 239, 0.1);
  color: var(--navy-strong);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scene-card-main strong {
  display: block;
  margin-top: 16px;
  color: var(--navy-strong);
  font-size: 1.55rem;
  line-height: 1.16;
}

.hero-scene-card-main p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.scene-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.scene-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 94, 168, 0.08);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-scene-card-side {
  width: 188px;
  padding: 20px 20px 18px;
  text-align: left;
  transform: translateZ(46px);
}

.hero-scene-card-top {
  top: 96px;
  right: 48px;
  animation: heroCardFloat 6.5s ease-in-out infinite;
}

.hero-scene-card-bottom {
  right: 86px;
  bottom: 72px;
  animation: heroCardFloat 7s ease-in-out infinite reverse;
}

.scene-metric {
  display: block;
  color: var(--navy-strong);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.hero-scene-card-side small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-scene-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 94, 168, 0.84);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 24px rgba(8, 78, 136, 0.18);
}

.hero-scene-badge-a {
  left: 74px;
  bottom: 78px;
}

.hero-scene-badge-b {
  right: 62px;
  top: 48px;
  background: rgba(24, 166, 239, 0.9);
}

.hero-points li {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink);
}

.hero-points li::before,
.contact-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 10px;
  background: var(--blue);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.blue {
  color: var(--blue);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.info-strip {
  background: linear-gradient(90deg, #0f6bae 0%, #1aa7ef 100%);
  color: var(--white);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
}

.info-strip-item {
  display: grid;
  gap: 8px;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.info-strip-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.info-strip-item span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.info-strip-item a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-strip-item a::after {
  content: "\2192";
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.info-strip-item a:hover::after {
  transform: translateX(3px);
}

.value-proposition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.value-intro h2 {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
}

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

.value-feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.value-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 149, 218, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.value-feature h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.value-feature p,
.section-heading p,
.text-stack p,
.service-card p,
.resource-card p,
.value-grid p,
.contact-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 104px 0;
}

.cta-band {
  padding: 34px 0;
  background: linear-gradient(90deg, #0b6caf 0%, #1aa7ef 100%);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band-inner h2 {
  margin: 0;
  max-width: 700px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.16;
}

.cta-invert {
  background: var(--white);
  color: var(--navy);
}

.cta-invert:hover {
  background: #eff7fd;
  color: var(--navy);
}

.accent-section {
  background: var(--surface);
}

.dark-section {
  background:
    radial-gradient(circle at top right, rgba(24, 166, 239, 0.18), transparent 28%),
    linear-gradient(180deg, #0a5f9f 0%, #0b4f87 100%);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}

.section-copy-actions {
  display: grid;
  gap: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resource-search-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin-top: 10px;
}

.resource-search-shell input {
  flex: 1;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
}

.page-hero-light .resource-search-shell input,
.branch-panel .resource-search-shell input {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.resource-search-shell input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-light .resource-search-shell input::placeholder,
.branch-panel .resource-search-shell input::placeholder {
  color: #8a98ab;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.text-link::after {
  content: "\2192";
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--blue-deep);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.section-heading h2,
.text-stack h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.76);
}

.services-grid,
.resources-grid,
.stats-grid,
.value-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.service-card,
.resource-card,
.contact-form,
.media-card,
.value-grid article,
.stat-card,
.info-card,
.faq-item,
.feature-panel,
.timeline-card,
.branch-panel,
.branch-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(10, 29, 53, 0.08);
}

.service-card,
.resource-card,
.value-grid article,
.info-card,
.faq-item,
.feature-panel,
.timeline-card,
.branch-panel,
.branch-item {
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.resource-card:hover,
.info-card:hover,
.faq-item:hover,
.timeline-card:hover,
.branch-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(10, 29, 53, 0.12);
  border-color: #c8daec;
}

.service-card:hover img,
.resource-card:hover img,
.media-card:hover img {
  transform: scale(1.03);
}

.service-card img,
.resource-card img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card img {
  aspect-ratio: 4 / 3;
}

.resource-card img {
  aspect-ratio: 16 / 9;
}

.service-body,
.resource-body,
.stat-card,
.value-grid article {
  padding: 22px;
}

.info-grid {
  display: grid;
  gap: 20px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.feature-media {
  display: flex;
  height: 100%;
  min-height: 100%;
}

.feature-media img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 38px;
}

.feature-copy h2,
.cta-panel h2,
.branch-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.contact-copy h2,
.branch-panel h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
}

.feature-copy p,
.cta-panel p,
.branch-panel p,
.timeline-card p,
.branch-item span,
.network-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

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

.info-card,
.faq-item {
  padding: 24px;
}

.info-card h3,
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.info-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.timeline-card {
  padding: 26px;
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #003d7a 0%, #0095da 100%);
  color: var(--white);
  font-weight: 800;
}

.timeline-card h3,
.branch-item strong {
  margin: 0 0 10px;
}

.network-card {
  padding: 26px;
  text-align: left;
}

.network-card strong {
  font-size: 1.35rem;
}

.branch-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  align-content: start;
  height: 100%;
}

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

.branch-item {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-detail-media {
  min-height: 100%;
  background: linear-gradient(180deg, #eef7fd 0%, #dcecf8 100%);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-body {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.service-detail-copy {
  display: grid;
  gap: 10px;
}

.service-detail-copy h3 {
  margin: 0;
  font-size: 1.5rem;
}

.service-detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.service-detail-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
}

.service-detail-block h4 {
  margin: 0 0 8px;
  font-size: 0.96rem;
}

.service-detail-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.service-body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 4px;
}

.service-body h3,
.resource-body h3,
.value-grid h3,
.contact-copy h2 {
  margin: 0;
  line-height: 1.25;
}

.service-body h3,
.resource-body h3,
.info-card h3,
.faq-item h3,
.timeline-card h3,
.branch-item strong {
  font-weight: 700;
}

.service-body h3,
.resource-body h3 {
  font-size: 1.12rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-meta span,
.resource-type {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
  display: grid;
  gap: 8px;
}

.service-list li + li {
  margin-top: 0;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

.contact-left-stack {
  display: grid;
  gap: 24px;
  align-content: start;
  height: 100%;
}

.two-column.reverse {
  align-items: stretch;
}

.media-card {
  display: flex;
  height: 100%;
  min-height: 100%;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 16px;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.resource-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.resource-body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.resource-date {
  color: #8a98ab;
  font-size: 0.82rem;
  font-weight: 600;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  border-radius: 10px;
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  max-width: 180px;
  line-height: 1.5;
}

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

.contact-section {
  background: linear-gradient(180deg, #f7fbfe 0%, #edf6fc 100%);
}

.contact-copy,
.contact-form {
  align-self: stretch;
}

.contact-points {
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
  padding: 13px 14px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 149, 218, 0.52);
  box-shadow: 0 0 0 4px rgba(0, 149, 218, 0.12);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.88rem;
}

.site-footer {
  padding: 40px 0 40px;
  background:
    linear-gradient(180deg, #0d5c99 0%, #0a4a7c 100%);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.98rem;
  color: var(--white);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-social-placeholder span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.94rem;
  cursor: default;
}

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

.logo-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 16px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: none;
  text-align: center;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(8, 26, 42, 0.94);
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 30;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes heroCardMain {
  0%,
  100% {
    transform: translateZ(30px) translateY(0);
  }
  50% {
    transform: translateZ(42px) translateY(-8px);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateZ(46px) translateY(0);
  }
  50% {
    transform: translateZ(56px) translateY(-10px);
  }
}

@keyframes laneFloat {
  0%,
  100% {
    transform: translateX(-50%) rotate(-18deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-18deg) translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .header-inner {
    min-height: 70px;
    gap: 14px;
  }

  .services-grid,
  .resources-grid,
  .stats-grid,
  .value-grid,
  .info-grid.three,
  .info-grid.two,
  .service-detail-grid,
  .info-strip-grid,
  .section-heading,
  .two-column,
  .contact-layout,
  .feature-panel,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-grid,
  .logo-strip,
  .footer-grid,
  .value-proposition {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner,
  .footer-legal,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .backend-actions {
    display: none;
  }

  .header-actions {
    display: flex;
    margin-left: 0;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
  }

  .menu-toggle[aria-expanded="true"] {
    background: rgba(24, 166, 239, 0.12);
    border-color: rgba(0, 94, 168, 0.24);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu-toggle span {
    transition: transform 0.22s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 94, 168, 0.1);
    box-shadow: 0 24px 44px rgba(8, 78, 136, 0.14);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open a {
    min-height: 46px;
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-strong);
    background: rgba(24, 166, 239, 0.04);
  }

  .main-nav.is-open a.is-active {
    background: rgba(24, 166, 239, 0.1);
  }

  .main-nav.is-open a::after {
    left: 12px;
    right: auto;
    width: 48px;
    bottom: 8px;
    transform-origin: left center;
  }

  .hero-home-content {
    min-height: 560px;
    grid-template-columns: 1fr;
  }

  .page-hero-banner {
    min-height: 480px;
  }

  .page-hero-banner-content {
    min-height: 480px;
    padding: 120px 0 60px;
  }

  .page-hero-banner-stats {
    width: min(360px, 42%);
  }

  .page-hero-banner-stats .page-hero-stat-a {
    right: 150px;
  }

  .hero-scene {
    min-height: 390px;
  }

  .hero-visual-stack {
    width: min(420px, 44%);
  }

  .hero-scene-card-main {
    left: 34px;
    top: 52px;
    width: 238px;
  }

  .hero-scene-card-top {
    right: 28px;
  }

  .hero-scene-card-bottom {
    right: 50px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 0;
  }

  .page-hero {
    padding: 76px 0 48px;
  }

  .page-hero-content {
    gap: 14px;
  }

  .page-hero-content p,
  .page-hero-note {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .page-hero-copy-panel {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .page-hero-stat {
    min-width: 132px;
    padding: 14px 14px 12px;
    border-radius: 14px;
  }

  .page-hero-stat strong {
    font-size: 1.42rem;
  }

  .page-hero-stat span {
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 96px 0 56px;
    gap: 18px;
  }

  .page-hero-banner {
    min-height: 420px;
  }

  .page-hero-banner-content {
    min-height: 420px;
    padding: 96px 0 44px;
  }

  .page-hero-banner-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page-hero-banner-stats .page-hero-stat-a,
  .page-hero-banner-stats .page-hero-stat-b {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-content p {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-copy-panel {
    padding: 26px 22px 24px;
    border-radius: 22px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button,
  .button-row .primary-button,
  .cta-band-inner .primary-button {
    width: 100%;
  }

  .hero-home-content {
    gap: 18px;
    min-height: auto;
  }

  .hero-visual-stack {
    gap: 14px;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-scene {
    min-height: 350px;
    border-radius: 24px;
  }

  .hero-scene-card-main {
    left: 22px;
    top: 24px;
    width: calc(100% - 44px);
    padding: 20px 18px 18px;
  }

  .hero-scene-card-main strong {
    font-size: 1.28rem;
  }

  .hero-scene-card-side {
    width: 160px;
    padding: 16px 16px 14px;
  }

  .hero-scene-card-top {
    top: 198px;
    left: 22px;
    right: auto;
  }

  .hero-scene-card-bottom {
    right: 22px;
    bottom: 20px;
  }

  .hero-scene-lane-a {
    bottom: 108px;
    width: 250px;
  }

  .hero-scene-lane-b {
    bottom: 56px;
    width: 210px;
  }

  .hero-scene-badge-a {
    left: 22px;
    bottom: 128px;
  }

  .hero-scene-badge-b {
    top: 154px;
    right: 22px;
  }

  .feature-panel,
  .two-column,
  .contact-layout {
    gap: 22px;
  }

  .feature-copy {
    padding: 24px 20px;
    gap: 12px;
  }

  .cta-panel,
  .branch-panel {
    padding: 24px 20px;
    gap: 16px;
  }

  .timeline-grid,
  .branch-list,
  .faq-list,
  .service-detail-list {
    gap: 14px;
  }

  .timeline-card,
  .branch-item,
  .network-card,
  .service-detail-body {
    padding: 20px;
  }

  .service-detail {
    border-radius: 10px;
  }

  .service-detail-media {
    min-height: 220px;
  }

  .service-detail-grid {
    gap: 12px;
  }

  .service-detail-block {
    padding: 16px;
    border-radius: 10px;
  }

  .services-grid,
  .resources-grid,
  .value-grid,
  .logo-strip,
  .info-grid.three,
  .info-grid.two,
  .service-detail-grid,
  .section-heading,
  .two-column,
  .contact-layout,
  .contact-form,
  .value-proposition,
  .hero-home-content,
  .footer-grid,
  .info-strip-grid,
  .feature-panel,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .info-strip {
    background: linear-gradient(180deg, #0f6bae 0%, #1aa7ef 100%);
  }

  .info-strip-grid {
    gap: 10px;
    padding: 18px 0;
  }

  .info-strip-item {
    border-left: 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .brand span {
    display: none;
  }

  .hero-points {
    margin-top: 4px;
    padding: 18px 18px 16px;
    gap: 12px;
  }

  .page-hero-shell {
    gap: 18px;
  }

  .page-hero-banner-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points li {
    font-size: 0.94rem;
    line-height: 1.55;
  }

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

  .stat-card {
    min-height: 136px;
  }

  .stat-card span {
    max-width: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .feature-copy,
  .contact-form,
  .service-body,
  .resource-body,
  .info-card,
  .faq-item,
  .branch-panel,
  .timeline-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .resource-search-shell input,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .resource-search-shell .primary-button {
    width: 100%;
  }

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

  .filter-chip {
    width: 100%;
    justify-content: center;
    padding: 0 12px;
  }

  .contact-form {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .contact-copy {
    gap: 14px;
  }

  .contact-points {
    gap: 10px;
    margin-top: 2px;
  }

  .resource-search-shell,
  .cta-panel {
    align-items: stretch;
  }

  .resource-search-shell {
    flex-direction: column;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-legal {
    gap: 8px;
    margin-top: 22px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 66px;
  }

  .lang-btn {
    min-width: 44px;
    min-height: 30px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .hero-content {
    padding: 92px 0 52px;
  }

  .page-hero-content h1,
  .section-heading h2,
  .text-stack h2,
  .feature-copy h2,
  .cta-panel h2,
  .branch-panel h2 {
    font-size: clamp(1.72rem, 7.8vw, 2.2rem);
    line-height: 1.12;
  }

  .page-hero-content {
    gap: 12px;
  }

  .page-hero-content p,
  .page-hero-note {
    font-size: 0.92rem;
  }

  .feature-copy,
  .cta-panel,
  .branch-panel,
  .contact-form,
  .service-detail-body,
  .timeline-card,
  .network-card,
  .info-card,
  .faq-item {
    padding: 18px;
  }

  .service-detail-media {
    min-height: 190px;
  }

  .resource-filters {
    grid-template-columns: 1fr;
  }

  .filter-chip {
    min-height: 40px;
  }

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

  .logo-strip span {
    min-height: 64px;
    font-size: 0.9rem;
  }

  .footer-legal {
    font-size: 0.82rem;
  }
}
