:root {
  color-scheme: light;
  --color-primary: #1091ed;
  --color-primary-dark: #0874c3;
  --color-ink: #0b1f33;
  --color-text: #334155;
  --color-muted: #5d6b7a;
  --color-soft: #f6f9fc;
  --color-line: #e5ecf3;
  --color-white: #ffffff;
  --color-success: #168a5f;
  --color-error: #d64545;
  --shadow-soft: 0 18px 50px rgba(11, 31, 51, 0.08);
  --shadow-card: 0 10px 30px rgba(11, 31, 51, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 76px;
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-system);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button, a, input, textarea { touch-action: manipulation; }
:focus-visible { outline: 3px solid rgba(16, 145, 237, 0.35); outline-offset: 4px; }
::selection { background: rgba(16, 145, 237, 0.18); color: var(--color-ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--color-ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section.compact { padding: 64px 0; }
.eyebrow { margin: 0 0 10px; color: var(--color-primary); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; }
.section-title { margin: 0; color: var(--color-ink); font-size: clamp(30px, 4vw, 48px); line-height: 1.16; letter-spacing: -0.04em; text-wrap: balance; }
.section-lead { margin: 18px 0 0; max-width: 760px; color: var(--color-muted); font-size: 18px; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 42px; }
.section-head .section-lead { max-width: 520px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 236, 243, 0.82);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand img { width: 154px; height: 42px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link, .dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-weight: 650;
  cursor: pointer;
  transition: color 180ms ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 174px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--color-text); }
.dropdown-menu a:hover { background: var(--color-soft); color: var(--color-primary); }
.header-cta { display: none; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--color-ink); color: #fff; font-weight: 700; transition: background 180ms ease, transform 180ms ease; }
.header-cta:hover { background: var(--color-primary); transform: translateY(-1px); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--color-line); border-radius: 999px; background: #fff; cursor: pointer; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--color-ink); transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 22, 38, 0.76), rgba(6, 22, 38, 0.44), rgba(6, 22, 38, 0.14)); z-index: -1; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(180deg, transparent, rgba(6, 22, 38, 0.68)); z-index: -1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.04); animation: heroDrift 16s ease-out forwards; }
.feature-photo img,
.image-stack > img,
.advantage-wide-photo img,
.service-card img,
.news-card img,
.article-cover {
  transition: transform 520ms ease, filter 520ms ease;
  will-change: transform;
}
.feature-photo:hover img,
.image-stack:hover > img,
.advantage-wide-photo:hover img,
.service-card:hover img,
.news-card:hover img,
.article-cover:hover {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.image-stack,
.article-shell { overflow: visible; }
.hero-content { max-width: 820px; padding: 86px 0; animation: riseIn 720ms ease both; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 8px 13px; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); font-weight: 700; }
.hero-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #55b8ff; box-shadow: 0 0 0 6px rgba(85,184,255,0.16); }
.hero h1 { margin: 0; font-size: clamp(42px, 7vw, 78px); line-height: 1.06; letter-spacing: -0.055em; text-wrap: balance; }
.hero p { margin: 22px 0 0; max-width: 650px; color: rgba(255,255,255,0.86); font-size: clamp(18px, 2vw, 24px); }
.hero-content > p { max-width: none; white-space: nowrap; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: 0 14px 28px rgba(16,145,237,0.22); }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.36); backdrop-filter: blur(12px); }
.btn-secondary:hover { background: rgba(255,255,255,0.22); }
.btn-outline { color: var(--color-primary); background: #fff; border-color: rgba(16,145,237,0.28); }
.btn-outline:hover { border-color: var(--color-primary); box-shadow: var(--shadow-card); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.trust-strip { margin-top: -118px; margin-bottom: -96px; position: relative; z-index: 30; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(229,236,243,0.86); border: 1px solid rgba(229,236,243,0.9); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 28px 90px rgba(11, 31, 51, 0.16); backdrop-filter: blur(18px); }
.trust-item {
  position: relative;
  isolation: isolate;
  background: rgba(255,255,255,0.94);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 22% 0%, rgba(16,145,237,0.18), transparent 36%), linear-gradient(135deg, rgba(255,255,255,0), rgba(16,145,237,0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}
.trust-item::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 42%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.82), transparent);
  transform: rotate(18deg) translateX(0);
  opacity: 0;
  transition: transform 520ms ease, opacity 220ms ease;
}
.trust-item:hover { transform: translateY(-8px); background: #fff; box-shadow: 0 22px 55px rgba(16, 145, 237, 0.16); }
.trust-item:hover::before { opacity: 1; }
.trust-item:hover::after { opacity: 1; transform: rotate(18deg) translateX(360%); }
.trust-num { color: var(--color-ink); font-size: 34px; line-height: 1; font-weight: 850; font-variant-numeric: tabular-nums; transition: color 220ms ease, transform 220ms ease; }
.trust-item:hover .trust-num { color: var(--color-primary); transform: translateY(-2px); }
.trust-label { margin-top: 10px; color: var(--color-muted); }

.advantage-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 32px; align-items: stretch; }
.feature-photo { position: relative; min-height: 640px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 20px; border: 1px solid rgba(255,255,255,0.28); border-radius: 20px; background: rgba(11,31,51,0.64); color: #fff; backdrop-filter: blur(14px); }
.advantage-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.advantage-showcase {
  position: relative;
  padding: 190px 0 108px;
  margin-top: -1px;
  background: #fff;
  overflow: hidden;
}
.advantage-showcase::before, .advantage-showcase::after { content: none; }
.advantage-hero-panel { position: relative; z-index: 1; min-height: auto; display: grid; align-content: center; gap: 38px; }
.advantage-title-block { max-width: 860px; }
.advantage-title-block .section-title { font-size: 56px; letter-spacing: -0.055em; }
.advantage-title-block .section-lead { max-width: none; font-size: 18px; white-space: nowrap; }
.advantage-wide-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(11, 31, 51, 0.14);
}
.advantage-wide-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(6, 22, 38, 0.72)); }
.advantage-wide-photo img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.advantage-wide-photo figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 54px);
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: end;
  color: #fff;
}
.advantage-wide-photo figcaption strong { display: block; max-width: 360px; font-size: 40px; line-height: 1.18; letter-spacing: -0.05em; text-wrap: balance; }
.advantage-wide-photo figcaption span { color: rgba(255,255,255,0.82); font-size: 18px; white-space: normal; }
.advantage-bento {
  position: relative;
  z-index: 1;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  grid-auto-rows: auto;
  gap: 20px;
  align-content: center;
  padding-top: 64px;
}
.advantage-card {
  position: relative;
  min-height: 190px;
  padding: clamp(24px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(229,236,243,0.94);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(11, 31, 51, 0.12);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.advantage-card::before { content: ""; position: absolute; inset: auto 28px 0; height: 4px; border-radius: 999px 999px 0 0; background: var(--color-primary); opacity: 0; transition: opacity 220ms ease; pointer-events: none; }
.advantage-card::after { content: none; }
.advantage-card:hover { transform: translateY(-6px); border-color: rgba(16,145,237,0.34); box-shadow: 0 28px 80px rgba(11, 31, 51, 0.11); }
.advantage-card:hover::before { opacity: 1; }
.advantage-card h3 { position: relative; z-index: 1; margin: 22px 0 12px; color: var(--color-ink); font-size: 30px; line-height: 1.18; letter-spacing: -0.02em; }
.advantage-card p { position: relative; z-index: 1; margin: 0; color: var(--color-text); font-size: 17px; }
.advantage-card .svg-icon { width: 44px; height: 44px; }
.advantage-card .svg-icon, .advantage-card .scene-tag { position: relative; z-index: 1; }
.advantage-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 520ms ease; }
.advantage-card-large { grid-row: span 3; min-height: 620px; background: var(--color-primary); color: #fff; border-color: var(--color-primary); box-shadow: 0 30px 90px rgba(16,145,237,0.24); }
.advantage-card-large::after { background: none; }
.advantage-card-large::before { content: ""; position: absolute; width: auto; height: auto; inset: 0; border-radius: 0; background: linear-gradient(180deg, rgba(16,145,237,1), rgba(16,145,237,0)); opacity: 1; z-index: 1; pointer-events: none; }
.advantage-card-large h3, .advantage-card-large .svg-icon, .advantage-card-large .scene-tag { color: #fff; }
.advantage-card-large p { color: rgba(255,255,255,0.88); }
.advantage-card-large .svg-icon { width: 64px; height: 64px; }
.advantage-card-large:hover .advantage-card-bg { transform: scale(1.06); }

.advantage-card-dark { background: #fff; color: var(--color-text); border-color: rgba(229,236,243,0.94); }
.advantage-card-dark::after { background: none; }
.advantage-card-dark h3 { color: var(--color-ink); }
.advantage-card-dark .svg-icon, .advantage-card-dark .scene-tag { color: var(--color-primary); }
.advantage-card-dark p { color: var(--color-text); }

.advantage-card-tall { grid-column: 2; min-height: 190px; background: #fff; }
.advantage-card-tall::after { background: none; }
.icon-card, .service-card, .news-card, .job-card, .contact-card, .state-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(11,31,51,0.02);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.icon-card:hover, .service-card:hover, .news-card:hover, .job-card:hover, .contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(16,145,237,0.32); }
.icon-card { padding: 26px; min-height: 262px; display: flex; flex-direction: column; }
.svg-icon { width: 42px; height: 42px; color: var(--color-primary); }
.icon-card h3, .service-card h3, .news-card h3, .job-card h3 { margin: 18px 0 10px; color: var(--color-ink); font-size: 22px; line-height: 1.28; }
.icon-card p, .service-card p, .news-card p, .job-card p { margin: 0; color: var(--color-muted); }
.scene-tag { margin-top: auto; padding-top: 18px; color: var(--color-primary); font-size: 14px; font-weight: 750; }

.about-band { background: linear-gradient(180deg, var(--color-soft), #fff); }
.home-news-band { background: #f7fbff; }
.about-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: center; }
.prose p { margin: 0 0 18px; color: var(--color-text); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.tag-row + .prose { margin-top: 24px; }
.tag-row + .btn { display: flex; width: fit-content; margin-top: 24px; }
.section-lead + .btn { display: flex; width: fit-content; margin-top: 24px; }
.tag { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; color: var(--color-primary); background: rgba(16,145,237,0.1); font-weight: 750; font-size: 14px; }
.image-stack { position: relative; }
.image-stack > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.image-stack { border-radius: var(--radius-lg); overflow: hidden; }
.metric-float { position: absolute; right: -18px; bottom: 34px; width: min(280px, 72%); padding: 22px; border-radius: 22px; background: var(--color-primary); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 22px 60px rgba(16, 145, 237, 0.28); }
.metric-float strong { display: block; color: #fff; font-size: 38px; line-height: 1; letter-spacing: -0.04em; }
.metric-float p { color: rgba(255,255,255,0.88); margin: 8px 0 0; }

.page-hero { position: relative; min-height: 360px; display: grid; align-items: end; color: #fff; isolation: isolate; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,22,38,0.74), rgba(6,22,38,0.28)); z-index: -1; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero-content { padding: 86px 0 58px; }
.page-hero h1 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.08; letter-spacing: -0.05em; }
.page-hero p { margin: 14px 0 0; color: rgba(255,255,255,0.84); font-size: 18px; }
.breadcrumb { padding: 18px 0; border-bottom: 1px solid var(--color-line); color: var(--color-muted); font-size: 14px; }
.breadcrumb a { color: var(--color-primary); font-weight: 700; }
.tab-button { white-space: nowrap; min-height: 44px; padding: 0 16px; border: 1px solid var(--color-line); border-radius: 999px; background: #fff; color: var(--color-text); font-weight: 750; cursor: pointer; }
.tab-button:hover, .tab-button.active { border-color: var(--color-primary); color: var(--color-primary); background: rgba(16,145,237,0.08); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 34px 0 100px; }
.stat-card { position: relative; overflow: hidden; padding: 24px; border-radius: 20px; background: var(--color-primary); border: 1px solid rgba(255,255,255,0.24); box-shadow: 0 16px 42px rgba(16,145,237,0.22); color: #fff; transition: transform 220ms ease, box-shadow 220ms ease; }
.stat-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 18% 12%, rgba(255,255,255,0.36), transparent 30%), linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.22) 42%, transparent 58%); transform: translateX(-110%); transition: transform 520ms ease; pointer-events: none; }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(16,145,237,0.34); }
.stat-card:hover::before { transform: translateX(110%); }
.stat-card strong { position: relative; display: block; color: #fff; font-size: 36px; line-height: 1; font-variant-numeric: tabular-nums; transition: transform 220ms ease; }
.stat-card span { position: relative; color: rgba(255,255,255,0.84); }
.stat-card:hover strong { transform: scale(1.06); }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.culture-card { position: relative; min-height: 390px; overflow: hidden; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.78); box-shadow: var(--shadow-soft); isolation: isolate; outline: none; }
.culture-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 520ms ease; z-index: -2; }
.culture-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,18,31,0.08), rgba(4,18,31,0.48) 58%, rgba(4,18,31,0.78)); z-index: -1; transition: background 240ms ease; }
.culture-overlay { position: absolute; inset: auto 22px 22px; color: #fff; }
.culture-overlay h3 { margin: 0; color: #fff; font-size: 25px; line-height: 1.2; text-shadow: 0 10px 28px rgba(0,0,0,0.28); }
.culture-overlay p { max-height: 0; margin: 0; overflow: hidden; opacity: 0; transform: translateY(12px); color: rgba(255,255,255,0.9); font-size: 16px; font-weight: 400; line-height: 1.55; transition: max-height 260ms ease, margin 260ms ease, opacity 220ms ease, transform 260ms ease; }
.culture-card:hover, .culture-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.culture-card:hover img, .culture-card:focus-visible img { transform: scale(1.06); }
.culture-card:hover::before, .culture-card:focus-visible::before { background: linear-gradient(180deg, rgba(16,145,237,0.14), rgba(5,31,51,0.5) 42%, rgba(5,31,51,0.88)); }
.culture-card:hover .culture-overlay p, .culture-card:focus-visible .culture-overlay p { max-height: 120px; margin-top: 12px; opacity: 1; transform: translateY(0); }

.masonry { columns: 3 300px; column-gap: 22px; }
.service-card { display: inline-block; width: 100%; margin: 0 0 22px; overflow: hidden; break-inside: avoid; }
.service-card-link { display: block; color: inherit; text-decoration: none; }
.service-card img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 240ms ease; }
.service-card.tall img { aspect-ratio: 4 / 5; }
.service-card.short img { aspect-ratio: 16 / 10; }
.service-card:hover img { transform: scale(1.045); }
.card-body { padding: 24px; }
.service-card .text-link { display: inline-block; margin-top: 18px; }
.meta-list { display: grid; gap: 12px; margin: 18px 0; padding: 0; list-style: none; }
.meta-list li { padding-left: 14px; border-left: 3px solid rgba(16,145,237,0.22); color: var(--color-muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-weight: 800; }

.news-home-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-home-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 1px 0 rgba(11,31,51,0.02); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.news-home-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(16,145,237,0.32); }
.news-home-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 520ms ease; }
.news-home-card:hover img { transform: scale(1.045); }
.news-home-card .card-body { padding: 24px; }
.news-home-card h3 { margin: 14px 0 10px; color: var(--color-ink); font-size: 20px; line-height: 1.3; }
.news-home-card p { margin: 0 0 16px; color: var(--color-muted); font-size: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--color-muted); font-size: 14px; font-variant-numeric: tabular-nums; }
.info-list { display: grid; gap: 16px; }
.info-list .wp-block-post-template { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.info-list .wp-block-post-template > li { margin: 0; padding: 0; }
.info-item { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 26px; align-items: center; padding: 26px 30px; color: inherit; text-decoration: none; background: #fff; border: 1px solid var(--color-line); border-radius: 24px; box-shadow: 0 1px 0 rgba(11,31,51,0.02); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.info-item:hover { transform: translateY(-4px); border-color: var(--color-primary); background: var(--color-primary); box-shadow: 0 24px 60px rgba(16,145,237,0.34); }
.info-date { display: grid; place-items: center; min-height: 96px; color: var(--color-primary); font-variant-numeric: tabular-nums; transition: color 200ms ease; }
.info-date strong { display: block; font-size: 30px; line-height: 1; letter-spacing: -0.04em; }
.info-date span { margin-top: 8px; color: var(--color-muted); font-size: 13px; font-weight: 750; transition: color 200ms ease; }
.info-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; color: var(--color-muted); font-size: 14px; font-variant-numeric: tabular-nums; }
.info-body h3 { margin: 0; color: var(--color-ink); font-size: 22px; line-height: 1.32; transition: color 200ms ease; }
.info-body p { margin: 10px 0 0; color: var(--color-muted); line-height: 1.78; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.info-body .wp-block-post-title { margin: 0; }
.info-body .wp-block-post-title a { color: inherit; text-decoration: none; }
.info-body .wp-block-post-excerpt { margin: 0; }
.info-body .wp-block-post-excerpt__excerpt { margin: 10px 0 0; color: var(--color-muted); line-height: 1.78; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.info-arrow { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; border-radius: 999px; color: var(--color-primary); background: rgba(16,145,237,0.08); font-weight: 750; white-space: nowrap; transition: background 200ms ease, color 200ms ease, transform 200ms ease; }
.wp-block-read-more.info-arrow { text-decoration: none; }
.info-item:hover .info-date { color: #fff; }
.info-item:hover .info-date span { color: rgba(255,255,255,0.78); }
.info-item:hover .info-meta, .info-item:hover .info-body p { color: rgba(255,255,255,0.82); }
.info-item:hover h3 { color: #fff; }
.info-item:hover .wp-block-post-title a { color: #fff; }
.info-item:hover .wp-block-post-excerpt__excerpt { color: rgba(255,255,255,0.82); }
.info-item:hover .info-arrow { background: #fff; color: var(--color-primary); transform: translateX(4px); }

.job-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.job-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.job-panel.active { display: grid; }
.job-card { padding: 26px; }
.job-card ol { margin: 16px 0 22px; padding-left: 20px; color: var(--color-muted); }
.job-card li { margin-bottom: 8px; }

.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: start; }
.contact-stack { display: grid; gap: 16px; }
.contact-card { padding: 26px; }
.contact-card h3 { margin: 0 0 10px; color: var(--color-ink); }
.qr { width: 128px; height: 128px; object-fit: cover; border: 1px solid var(--color-line); border-radius: 16px; }
.map-card { min-height: 260px; display: grid; place-items: center; text-align: center; background: linear-gradient(135deg, rgba(16,145,237,0.1), rgba(11,31,51,0.04)); }
.form-card { padding: 30px; border: 1px solid var(--color-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.form-grid { display: grid; gap: 18px; }
.field label { display: block; margin-bottom: 8px; color: var(--color-ink); font-weight: 750; }
.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(16,145,237,0.12); outline: 0; }
.field-error { display: none; margin-top: 6px; color: var(--color-error); font-size: 14px; }
.field.invalid .field-error { display: block; }
.captcha-row { display: grid; grid-template-columns: 1fr 140px; gap: 12px; align-items: end; }
.captcha-row img { width: 140px; height: 48px; object-fit: cover; border: 1px solid var(--color-line); border-radius: 12px; }

/* CF7/enquiry-kit compatibility: keep the original contact form rhythm. */
.form-card .wpcf7 { margin-top: 12px; }
.form-card .wpcf7 form { display: grid; gap: 18px; }
.form-card .wpcf7 .ek-field { margin: 0; }
.form-card .wpcf7 .ek-field label { display: block; margin-bottom: 8px; color: var(--color-ink); font-weight: 750; }
.form-card .wpcf7 .wpcf7-form-control-wrap { display: block; }
.form-card .wpcf7 input[type="text"],
.form-card .wpcf7 input[type="email"],
.form-card .wpcf7 input[type="tel"],
.form-card .wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #fff;
  font: inherit;
}
.form-card .wpcf7 textarea { min-height: 140px; resize: vertical; }
.form-card .wpcf7 input:focus,
.form-card .wpcf7 textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(16,145,237,0.12);
  outline: 0;
}
.form-card .wpcf7 .wpcf7-submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 750;
  color: #fff;
  background: var(--color-primary);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.form-card .wpcf7 .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.form-card .wpcf7 .wpcf7-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-card .wpcf7 .wpcf7-spinner { margin: 0 0 0 10px; }
.form-card .wpcf7 .wpcf7-response-output {
  margin: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}
.form-status { min-height: 24px; margin: 8px 0 0; color: var(--color-success); font-weight: 750; }
.form-status.error { color: var(--color-error); }

.article-shell { max-width: 860px; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 18px 0 30px; color: var(--color-muted); font-variant-numeric: tabular-nums; }
.article-cover { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 32px; }
.richtext { color: var(--color-text); font-size: 18px; }
.richtext p { margin: 0 0 20px; }
.richtext h2 { margin: 36px 0 14px; color: var(--color-ink); font-size: 28px; }
.richtext ul { padding-left: 22px; }
.richtext li { margin-bottom: 10px; }

.states-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.state-card { padding: 26px; text-align: center; }
.spinner { width: 34px; height: 34px; margin: 0 auto 16px; border: 3px solid var(--color-line); border-top-color: var(--color-primary); border-radius: 50%; animation: spin 800ms linear infinite; }
.skeleton { height: 14px; margin: 10px 0; border-radius: 999px; background: linear-gradient(90deg, #edf3f8, #f8fbfd, #edf3f8); background-size: 220% 100%; animation: shimmer 1.2s ease infinite; }

.site-footer { background: #071a2c; color: rgba(255,255,255,0.78); padding: 66px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr 0.7fr; gap: 34px; }
.footer-logo { width: 160px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.92; }
.site-footer h2, .site-footer h3 { color: #fff; margin: 0 0 14px; }
.site-footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.advantage-card.reveal.visible:hover { transform: translateY(-6px); }
@keyframes riseIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroDrift { from { transform: scale(1.08); } to { transform: scale(1.02); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -220% 0; } }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  body.menu-open .main-nav { transform: translateY(0); visibility: visible; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 18px; }
  .header-cta { display: none; }
  .section-head, .advantage-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; display: grid; }
  .trust-strip { margin-top: -92px; margin-bottom: -80px; }
  .advantage-showcase { padding: 142px 0 86px; }
  .advantage-hero-panel { min-height: auto; gap: 34px; }
  .advantage-wide-photo figcaption { grid-template-columns: 1fr; }
  .advantage-bento { min-height: auto; grid-template-columns: 1fr; padding-top: 44px; }
  .advantage-card-large, .advantage-card-tall { grid-column: auto; grid-row: auto; min-height: 300px; }
  .trust-grid, .stats-grid, .culture-grid, .job-panel.active, .states-grid { grid-template-columns: repeat(2, 1fr); }
  .info-item { grid-template-columns: 82px minmax(0, 1fr); gap: 18px; }
  .info-arrow { grid-column: 2; justify-self: start; }
  .info-date { min-height: 82px; }
  .feature-photo { min-height: 420px; }
  .news-home-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 68px 0; }
  .brand img { width: 132px; height: 36px; }
  .hero { min-height: 640px; }
  .hero-content > p { white-space: normal; }
  .hero-actions, .btn { width: 100%; }
  .trust-strip { margin-top: -62px; margin-bottom: -58px; padding-top: 0; background: transparent; }
  .trust-grid, .advantage-cards, .advantage-bento, .stats-grid, .culture-grid, .job-panel.active, .states-grid, .news-home-list, .footer-grid { grid-template-columns: 1fr; }
  .info-item { grid-template-columns: 1fr; padding: 22px; }
  .info-date { width: 92px; min-height: 72px; place-items: start; padding: 14px; }
  .info-arrow { grid-column: 1; }
  .advantage-showcase { padding: 114px 0 62px; }
  .advantage-title-block .section-title { font-size: 44px; }
  .advantage-title-block .section-lead { white-space: normal; }
  .advantage-wide-photo figcaption span { white-space: normal; }
  .advantage-wide-photo figcaption strong { font-size: 28px; }
  .advantage-wide-photo, .advantage-wide-photo img { min-height: 0; }
  .advantage-wide-photo { border-radius: 24px; }
  .advantage-card, .advantage-card-large, .advantage-card-tall { grid-column: auto; min-height: 300px; border-radius: 24px; }
  .metric-float { position: static; width: 100%; margin-top: 16px; }
  .captcha-row { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
