﻿:root {
  --color-primary: #0b4f9c;
  --color-primary-bright: #146cd1;
  --color-primary-dark: #07366f;
  --color-primary-soft: #edf4fc;
  --color-accent: #b88a36;
  --color-accent-soft: #fbf6eb;
  --color-green: #176f61;
  --color-ink: #172133;
  --color-muted: #667085;
  --color-line: #e3e8ef;
  --color-bg: #ffffff;
  --color-white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(22, 39, 64, 0.07);
  --shadow-md: 0 18px 44px rgba(22, 39, 64, 0.13);
  --radius-sm: 4px;
  --radius-md: 6px;
  --container: 1400px;
  --font-sans: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-md);
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(20, 108, 209, 0.25);
  outline-offset: 3px;
}

p {
  margin: 0 0 16px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #10213a;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

.section {
  padding: 60px 0;
}

.section-soft {
  background: var(--color-white);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-size: 32px;
  line-height: 1.3;
}

.section-desc {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
}

.muted {
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 0;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(13, 35, 65, 0.09);
}

.header-brand-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.header-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  color: #222;
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.header-phone::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: center / contain no-repeat url("../images/icon-tel.png");
}

.site-nav-bar {
  padding: 0;
  border-top: 0;
  background: #3d5881;
}

.site-nav {
  --nav-font-size: 16px;
  width: min(100%, 1400px);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #3d5881;
}

.nav-link {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #ffffff;
  font-size: var(--nav-font-size);
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: #31476b;
  box-shadow: none;
}

.nav-link.is-active::after {
  background: transparent;
}

.nav-group {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
}

.nav-group > .nav-link {
  width: 100%;
  cursor: pointer;
  list-style: none;
}

.nav-group:hover > .nav-link {
  background: #31476b;
}

.nav-dropdown {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  display: none;
  width: 220px;
  padding: 8px 0;
  color: #233852;
  background: #ffffff;
  border: 1px solid #dce3ec;
  box-shadow: 0 16px 34px rgba(27, 45, 70, 0.18);
}

.nav-group:hover > .nav-dropdown {
  display: block;
}

.nav-dropdown-simple > a,
.nav-empty,
.nav-country > .nav-country-label,
.nav-projects > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  color: #233852;
  font-size: var(--nav-font-size);
  line-height: 1.45;
  text-align: left;
}

.nav-dropdown-simple > a:hover,
.nav-country > .nav-country-label:hover,
.nav-projects > a:hover {
  color: #ffffff;
  background: #3d5881;
}

.nav-country {
  position: relative;
}

.nav-country > .nav-country-label {
  cursor: pointer;
  justify-content: space-between;
  list-style: none;
}

.nav-country > .nav-country-label::after {
  content: ">";
  margin-left: 12px;
  color: #8b98a9;
}

.nav-projects {
  position: absolute;
  z-index: 41;
  top: -9px;
  left: 100%;
  display: none;
  width: 292px;
  padding: 8px 0;
  background: #ffffff;
  border: 1px solid #dce3ec;
  box-shadow: 0 16px 34px rgba(27, 45, 70, 0.18);
}

.nav-country:hover > .nav-projects {
  display: block;
}

.nav-projects > a {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  white-space: normal;
}

.nav-project-cn,
.nav-project-en {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.nav-project-cn {
  color: inherit;
  font-size: 16px;
  line-height: 1.35;
}

.nav-project-en {
  color: #7a8799;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.nav-projects > a:hover .nav-project-en {
  color: rgba(255, 255, 255, 0.82);
}

.nav-empty {
  color: #8894a5;
}

.nav-group:nth-last-child(-n + 3) > .nav-dropdown {
  right: 0;
  left: auto;
}

.nav-group:nth-last-child(-n + 3) .nav-projects {
  right: 100%;
  left: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
  background: var(--color-white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-footer {
  color: #ffffff;
  background: #3d5881;
}

.footer-bottom {
  display: grid;
  justify-content: center;
  gap: 12px;
  padding: 28px 0 34px;
  border-top: 0;
  text-align: center;
}

.footer-meta {
  color: #ffffff;
  font-size: 16px;
}

.footer-meta a {
  color: inherit;
  text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-gongan {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  line-height: 1.5;
}

.footer-gongan img {
  display: block;
  width: 18px !important;
  height: 18px;
  margin: 0 !important;
  line-height: normal !important;
  vertical-align: middle !important;
  flex: 0 0 18px;
}

.back-to-top {
  position: fixed;
  right: max(16px, calc((100vw - var(--container)) / 2 - 78px));
  bottom: 148px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #3d5881;
  box-shadow: 0 14px 30px rgba(15, 33, 58, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
}

.back-to-top span {
  display: block;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #31476b;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(4, 31, 67, 0.35);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100% - var(--container)) / 2));
  bottom: 0;
  width: 92px;
  height: 4px;
  background: var(--color-accent);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: page-banner-zoom 12s ease-in-out infinite alternate;
}

@keyframes page-banner-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero img {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 68px 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(4, 24, 48, 0.65);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 1.25;
}

.page-hero p {
  max-width: 670px;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  color: #e4edf7;
  font-size: 17px;
  line-height: 1.8;
}

.page-hero .section-kicker {
  color: #f3d79e;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: start;
}

.content-panel,
.sidebar-panel {
  background: var(--color-white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.content-panel {
  padding: 38px 40px;
}

.sidebar-panel {
  position: sticky;
  top: 188px;
  width: 100%;
  max-width: 390px;
  justify-self: end;
  padding: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.breadcrumb a {
  color: var(--color-primary);
}

.inner-page-breadcrumb {
  padding-top: 28px;
}

.inner-page-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.project-detail-layout {
  display: block;
}

.project-detail-layout .content-panel {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.breadcrumb span[aria-current="page"] {
  color: #5f6d80;
}

.project-page-qa {
  border-top: 1px solid var(--color-line);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--color-white);
  background: var(--color-primary-bright);
  box-shadow: 0 10px 24px rgba(12, 76, 153, 0.22);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-outline {
  color: var(--color-primary);
  border-color: rgba(11, 79, 156, 0.38);
  background: var(--color-white);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  color: var(--color-primary-dark);
  background: var(--color-white);
}

.text-link,
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

.text-link span,
.link-more span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.link-more:hover span {
  transform: translateX(3px);
}

.tag {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 2px;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--color-primary-dark);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.is-active > img {
  animation: hero-banner-zoom 9s ease-in-out infinite alternate;
}

@keyframes hero-banner-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 61, 0.64);
}

.hero-slide::after,
.hero-slide > img {
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  padding-left: 0;
  border-left: 0;
  color: var(--color-white);
  text-align: center;
}

.hero-kicker {
  display: block;
  margin-bottom: 13px;
  color: #f3d79e;
  font-size: 13px;
  font-weight: 700;
}

.hero-copy h1,
.hero-copy h2 {
  color: var(--color-white);
  font-size: 48px;
  font-weight: 800;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 19px;
  margin-right: auto;
  margin-left: auto;
  color: #e5edf7;
  font-size: 18px;
}

.hero-actions {
  display: none;
}

.carousel-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.carousel-dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-white);
}

.carousel-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(4, 28, 61, 0.25);
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-btn::before {
  display: block;
  color: var(--color-white);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}

.carousel-btn:hover {
  background: rgba(4, 28, 61, 0.65);
}

.carousel-prev::before {
  content: "\2039";
}

.carousel-prev {
  left: clamp(70px, 7vw, 128px);
}

.carousel-next::before {
  content: "\203A";
}

.carousel-next {
  right: clamp(70px, 7vw, 128px);
}

.hero-carousel {
  cursor: grab;
  user-select: none;
}

.hero-carousel.is-dragging {
  cursor: grabbing;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  min-width: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}

.card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dbe6f2;
}

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

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

.media-placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px dashed #b7c6d8;
  color: #4a5b73;
  background: linear-gradient(180deg, #f6f9fc 0%, #edf2f8 100%);
  text-align: center;
}

.media-placeholder-label {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.media-placeholder-size {
  color: #10213a;
  font-size: 15px;
  line-height: 1.4;
}

.project-placeholder {
  min-height: 0;
}

.team-placeholder {
  height: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
}

.case-placeholder {
  height: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
}

.card-body {
  padding: 22px;
}

.card-code {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.card-title {
  margin: 2px 0 9px;
  font-size: 20px;
}

.card-title a:hover {
  color: var(--color-primary);
}

.card-desc {
  min-height: 54px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid #edf0f4;
  font-size: 13px;
}

.project-card-grid .project-card {
  display: block;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 33, 58, 0.08);
}

.project-card-grid .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(16, 33, 58, 0.12);
}

.project-card-grid {
  column-gap: 42px;
  row-gap: 42px;
}

.recommended-project-grid {
  gap: 20px;
}

.country-project-section [data-project-list],
.country-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.project-card-grid .card-media {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.project-card-grid .card-body {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 24px 30px;
  text-align: center;
}

.project-card-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 6px 14px;
  color: #3d5881;
  background: #edf3fa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.project-card-grid .card-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.project-card-grid .card-desc {
  min-height: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #5f6f82;
  font-size: 15px;
  line-height: 1.8;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.feature-list {
  display: grid;
  gap: 13px;
}

.feature-item {
  position: relative;
  padding-left: 27px;
  color: #3d4858;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 1px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.stat {
  padding: 20px;
  background: var(--color-white);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--color-primary);
  font-size: 27px;
  line-height: 1.1;
}

.stat span {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--color-white);
  transition: box-shadow 0.2s ease;
}

.article-item:hover {
  box-shadow: var(--shadow-sm);
}

.article-thumb {
  width: 100%;
  height: 148px;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.article-item:hover .article-thumb,
.article-item a:hover .article-thumb {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.news-placeholder {
  display: flex;
  height: 148px;
  min-height: 148px;
}

.article-body {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 6px 18px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-muted);
  font-size: 12px;
}

.article-title {
  font-size: 18px;
  line-height: 1.45;
}

.article-title a:hover {
  color: var(--color-primary);
}

.article-item .link-more {
  font-size: 13px;
}

.side-title {
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--color-primary);
  font-size: 18px;
}

.side-list {
  display: grid;
  gap: 0;
}

.side-list a {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid #e6ebf1;
  color: #354052;
  background: transparent;
}

.side-list a:hover {
  color: var(--color-primary);
}

.side-list strong {
  font-size: 15px;
  line-height: 1.5;
}

.side-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.detail-section {
  margin-bottom: 48px;
  padding: 0 0 34px;
  border-bottom: 1px solid #eeeeee;
}

.detail-section:first-child {
  padding-top: 0;
}

.detail-section:last-child {
  border-bottom: 0;
}

.detail-section h2 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 0;
  font-size: 24px;
}

.detail-section h2::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: -8px;
  left: 0;
  width: 52px;
  height: 2px;
  background: #222222;
}

.detail-subtitle {
  margin: 22px 0 14px;
  color: #10213a;
  font-size: 18px;
  line-height: 1.45;
}

.detail-subtitle:first-of-type {
  margin-top: 0;
}

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

.condition-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 124px;
  padding: 22px 22px 20px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--color-primary);
  background: #f8fafc;
  text-align: center;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.condition-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  font-size: 16px;
  line-height: 1.5;
}

.condition-item span {
  display: block;
  color: #526174;
  line-height: 1.75;
}

.condition-item:hover {
  border-color: #ccd7e4;
  border-top-color: var(--color-accent);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(28, 51, 82, 0.09);
  transform: translateY(-3px);
}

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

.project-option-card {
  min-height: 190px;
  padding: 22px 20px;
  border-top: 3px solid var(--color-accent);
  background: #f2f6fb;
}

.project-option-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-size: 18px;
  line-height: 1.5;
}

.project-option-card p {
  margin: 0 0 14px;
  color: #3d4858;
  line-height: 1.8;
}

.project-option-card span {
  display: block;
  color: #6a7890;
  font-size: 14px;
  line-height: 1.7;
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-list li {
  counter-increment: process;
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-align: center;
  color: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: static;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-right: 0;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  transform: none;
  transition: background-color 0.22s ease;
}

.process-list li:hover {
  border-color: #ccd7e4;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(28, 51, 82, 0.09);
}

.fee-table {
  overflow: visible;
  border: 0;
  border-top: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: transparent;
}

.fee-table thead th {
  padding: 15px 17px;
  border: 1px solid #dfe6ef;
  color: #10213a;
  background: #f7f9fc;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

.fee-table thead th + th {
  border-left: 0;
}

.fee-table tbody td {
  padding: 18px 17px;
  border-top: 1px solid #e3eaf2;
  border-right: 1px solid #e3eaf2;
  border-bottom: 1px solid #e3eaf2;
  text-align: left;
  vertical-align: middle;
  background: #ffffff;
}

.fee-table tbody td:first-child {
  border-left: 1px solid #e3eaf2;
}

.fee-table tbody td:last-child {
  border-right: 1px solid #e3eaf2;
}

.fee-table tbody tr + tr td {
  border-top: 0;
}

.fee-table tbody .fee-section-row td {
  padding: 18px 18px 14px;
  border: 0;
  color: #10213a;
  background: #f0f5fb;
  font-size: 17px;
  font-weight: 800;
  vertical-align: middle;
}

.fee-table tbody .fee-spacer-row td {
  padding: 0;
  border: 0;
  height: 14px;
  background: transparent;
}

.fee-table tbody td:first-child {
  width: 18%;
  color: #222222;
  font-weight: 700;
}

.fee-table tbody td:nth-child(2) {
  width: 12%;
  font-weight: 700;
  white-space: nowrap;
}

.fee-table tbody td:nth-child(3) {
  width: 14%;
  white-space: nowrap;
}

.fee-table tbody td:nth-child(4) {
  width: 18%;
  color: #10213a;
  line-height: 1.7;
}

.fee-table tbody td:nth-child(5) {
  width: 38%;
  line-height: 1.8;
}

.case-card .card-foot {
  justify-content: flex-start;
  gap: 10px;
}

.route-section .project-card-grid + .project-group {
  margin-top: 40px;
}

.project-group {
  margin-top: 36px;
}

.project-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--color-primary-dark);
  font-size: 21px;
}

.project-group-title span {
  color: var(--color-accent);
  font-size: 12px;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

.about-home-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.section-head-center {
  justify-content: center;
  text-align: center;
}

.section-head-center .section-kicker {
  justify-content: center;
}

.section-head-center > div:first-child,
.block-section-head > div:first-child {
  max-width: 760px;
}

.home-section-head {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-section-head > div:first-child {
  max-width: 760px;
}

.home-section-head .section-kicker {
  justify-content: center;
}

.home-section-head .text-link {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .home-section-head .text-link {
    position: static;
    transform: none;
    justify-content: center;
  }
}

.block-section-head {
  justify-content: center;
  text-align: center;
}

.block-section-head .section-kicker {
  justify-content: center;
}

.about-media {
  position: relative;
  height: 550px;
  aspect-ratio: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}

.about-media::before {
  display: none;
}

.about-media-placeholder {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  transition:
    transform 0.45s ease,
    filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.about-media:hover img {
  transform: scale(1.04);
  filter: brightness(1.03);
}

.about-media:hover .about-media-placeholder {
  transform: scale(1.025);
  filter: brightness(1.02);
  border-color: #8fb1d8;
  box-shadow: inset 0 0 0 1px rgba(11, 79, 156, 0.08);
}

.about-copy .section-desc {
  margin-bottom: 27px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 550px;
  padding: 42px 40px;
  background: #f8fafc;
  border-left: 4px solid var(--color-accent);
}

.about-copy > p:not(.section-desc) {
  color: #465366;
  font-size: 15px;
}

.about-stats {
  margin-top: 26px;
}

.value-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 215px;
  padding: 28px 26px;
  border-top: 3px solid var(--color-primary);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.value-block > span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
}

.value-block h3 {
  margin-top: 28px;
  font-size: 20px;
}

.value-block p {
  margin: 11px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.about-feature-list {
  margin-bottom: 28px;
}

.about-feature-list .feature-item {
  display: grid;
  gap: 2px;
}

.about-feature-list strong {
  color: #26364b;
}

.about-feature-list span {
  color: var(--color-muted);
  font-size: 14px;
}

.service-method {
  color: var(--color-ink);
  background: var(--color-white);
}

.section-head-light .section-title {
  color: #10213a;
}

.section-head-light .section-desc {
  color: var(--color-muted);
}

.section-head-light .section-kicker {
  color: var(--color-primary);
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #eeeeee;
}

.service-steps li {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 27px 28px;
  border-right: 1px solid #eeeeee;
  text-align: center;
}

.service-steps li:nth-child(3n) {
  border-right: 0;
}

.service-steps li:nth-child(n + 4) {
  border-top: 1px solid #eeeeee;
}

.service-steps span,
.service-steps strong {
  display: block;
}

.service-steps span {
  margin-bottom: 23px;
  color: #f0cc86;
  font-size: 13px;
  font-weight: 800;
}

.service-steps strong {
  color: #10213a;
  font-size: 19px;
}

.service-steps p {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dbe3ec;
  border-bottom: 1px solid #dbe3ec;
}

.trust-grid article {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 28px 24px;
  border-right: 1px solid #dbe3ec;
  text-align: center;
}

.trust-grid article:first-child {
  border-left: 1px solid #dbe3ec;
}

.trust-grid span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.trust-grid h3 {
  margin: 24px 0 10px;
  color: #10213a;
  font-size: 19px;
}

.trust-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-strengths-section .value-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.project-evaluation-section .value-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-top: 3px solid var(--color-primary);
  border-bottom: 1px solid #d9e1ea;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-right: 1px solid #e1e6ec;
  border-bottom: 1px solid #e1e6ec;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
}

.comparison-table thead th {
  color: #ffffff;
  background: #24466f;
  font-size: 15px;
}

.comparison-table tbody th {
  width: 140px;
  color: #17365d;
  background: #f4f7fa;
  font-size: 15px;
}

.comparison-table tbody tr:hover td,
.comparison-table tbody tr:hover th {
  background: #f8fafc;
}

.assurance-head {
  justify-content: center;
  text-align: center;
}

.assurance-head .section-desc {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.assurance-list {
  margin: 0;
  border-top: 1px solid #cfd9e4;
}

.assurance-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #cfd9e4;
}

.assurance-list dt {
  color: #17365d;
  font-size: 16px;
  font-weight: 800;
}

.assurance-list dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.policy-review-note {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 15px 18px;
  border-left: 3px solid var(--color-primary);
  background: #f1f5f9;
}

.policy-review-note strong {
  flex: 0 0 auto;
  color: #17365d;
  font-size: 14px;
}

.policy-review-note span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

.team-card .card-media {
  height: auto;
  aspect-ratio: 3 / 4;
}

.lawyer-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #f6f9fc 0%, #edf3fa 100%);
  border: 1px solid #dbe5f0;
}

.lawyer-photo-placeholder {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  transition:
    transform 0.45s ease,
    filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.lawyer-showcase:hover .lawyer-photo-placeholder {
  transform: scale(1.02);
  filter: brightness(1.02);
  border-color: #8fb1d8;
  box-shadow: inset 0 0 0 1px rgba(11, 79, 156, 0.08);
}

.lawyer-photo-wrap {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #e8edf3;
}

.lawyer-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.lawyer-showcase:hover .lawyer-photo {
  transform: scale(1.025);
  filter: brightness(1.02);
}

.lawyer-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 46px 44px;
  background: radial-gradient(circle at top right, rgba(206, 223, 242, 0.55) 0, rgba(206, 223, 242, 0) 34%), #f8fafc;
}

.lawyer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lawyer-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-accent);
}

.lawyer-copy h3 {
  color: #10213a;
  font-size: 34px;
}

.lawyer-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.9;
}

.lawyer-meta-list {
  display: grid;
  gap: 10px;
  margin: 2px 0 4px;
}

.lawyer-meta-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dbe5f0;
}

.lawyer-meta-item strong {
  color: #28415f;
  font-size: 14px;
  line-height: 1.7;
}

.lawyer-meta-item span {
  color: #4f5f74;
  font-size: 15px;
  line-height: 1.8;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.lawyer-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #28415f;
  background: #eaf0f7;
  font-size: 13px;
  font-weight: 700;
}

.team-card .card-title {
  margin-top: 7px;
}

.team-card .card-desc {
  min-height: 74px;
}

.case-card .card-media {
  aspect-ratio: 3 / 4;
}

.case-card .card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.case-card .tag {
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #9d7422;
  background: rgba(181, 138, 46, 0.12);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.case-card .card-title {
  min-height: 0;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.case-card .card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.8em * 2);
  margin: 0;
  color: #5c6a7f;
  font-size: 14px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-card .card-foot {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid #edf1f5;
  font-size: 13px;
}

.case-card .muted {
  color: #7c8899;
  font-size: 13px;
}

.case-card .link-more {
  font-size: 13px;
  font-weight: 700;
}

.section-foot-link {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 18px;
  color: #7a5a17;
  font-size: 15px;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid rgba(181, 138, 46, 0.24);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.page-btn:hover {
  color: #ffffff;
  background: #b58a2e;
  border-color: #b58a2e;
}

.page-btn.is-active {
  color: #ffffff;
  background: #b58a2e;
  border-color: #b58a2e;
  pointer-events: none;
}

.page-btn.is-disabled {
  color: #b8c0ca;
  background: #f7f8fa;
  border-color: #e3e7ed;
  pointer-events: none;
}

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

.home-news-grid .article-item {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid #e6ebf1;
  box-shadow: none;
}

.home-news-grid .article-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

.home-news-grid .news-placeholder {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.home-news-grid .article-body {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  min-height: 0;
  padding: 16px 0 0;
  text-align: center;
  background: transparent;
}

.home-news-grid .article-title {
  order: 1;
  font-size: 22px;
  line-height: 1.35;
}

.home-news-grid .article-meta {
  order: 2;
  margin-top: 0;
}

.home-news-grid .article-meta span:first-child {
  display: none;
}

.home-news-grid .article-body .muted {
  display: none;
}

.home-news-grid .link-more {
  display: none;
}

.list-page-panel > h1 {
  margin-bottom: 10px;
  font-size: 32px;
}

.list-page-intro {
  margin: 0 0 26px;
  color: #4c5b70;
  font-size: 17px;
  line-height: 1.8;
}

.list-page-panel .article-list {
  gap: 34px;
}

.list-page-panel .article-meta {
  display: block;
  grid-area: date;
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.list-page-panel .article-item {
  grid-template-columns: min(335px, calc((min(calc(100vw - 48px), var(--container)) - 60px) / 4)) minmax(0, 1fr);
  align-items: start;
  column-gap: 26px;
}

.list-page-panel .article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "title title" "summary summary" "link date";
  align-content: start;
  gap: 18px 16px;
  padding: 0 6px 0 0;
}

.list-page-panel .article-title {
  grid-area: title;
  margin-top: 0;
  font-size: 22px;
  line-height: 1.4;
}

.list-page-panel .article-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.list-page-panel .news-placeholder {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.list-page-panel .muted {
  grid-area: summary;
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.75em * 2);
  font-size: 14px;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.list-page-panel .article-item .link-more {
  display: none;
}

.list-page-panel .article-meta span:first-child {
  display: none;
}

.sidebar-panel .side-list p {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.75em * 2);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-qa-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  max-width: none;
}

.home-qa-grid a {
  min-height: 146px;
  align-content: start;
}

.qa-section-block .home-qa-grid a {
  position: relative;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.qa-section-block .home-qa-grid a:hover,
.qa-section-block .home-qa-grid a:focus-visible {
  color: var(--color-primary);
  background: #f7f9fc;
  transform: translateY(-3px);
}

.qa-section-block .home-qa-grid a strong {
  transition: color 0.22s ease;
}

.qa-section-block .home-qa-grid a:hover strong,
.qa-section-block .home-qa-grid a:focus-visible strong {
  color: var(--color-accent-dark);
}

.project-intro-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.project-intro-copy {
  order: 2;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 30px;
  background: linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
  border-top: 0;
}

.project-intro-facts {
  order: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
  padding: 28px 30px;
  background: #f2f6fb;
  border-top: 3px solid var(--color-accent);
}

.project-intro-fact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  padding: 16px 18px;
  background: #ffffff;
  border-left: 3px solid var(--color-accent);
}

.project-intro-fact span {
  color: #6a7890;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.project-intro-fact strong {
  color: #10213a;
  font-size: 16px;
  line-height: 1.7;
}

.project-intro-fact strong small {
  display: block;
  margin-top: 3px;
  color: #6a7890;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.project-intro-fact-wide {
  grid-column: 1 / -1;
}

.project-intro-copy p {
  margin: 0;
  color: #3d4858;
  line-height: 1.9;
}

.project-intro-copy p:first-child {
  color: #26364b;
  font-size: 17px;
}

.project-intro-media {
  order: 1;
  position: relative;
  align-self: start;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dbe6f2;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.project-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.project-intro-media:hover img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.project-intro-media:hover {
  box-shadow: 0 18px 34px rgba(28, 51, 82, 0.2);
  transform: translateY(-4px);
}

.project-intro-media:hover .project-intro-placeholder {
  background: linear-gradient(180deg, #edf2f8 0%, #cbd5e1 100%);
}

.project-intro-media:hover .media-placeholder-size {
  transform: scale(1.04);
}

.project-intro-media .media-placeholder-size {
  transition: transform 0.25s ease;
}

.project-intro-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.project-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 27, 54, 0.05) 0%, rgba(9, 27, 54, 0.28) 100%);
}

.project-intro-badge {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  padding: 8px 14px;
  color: #ffffff;
  background: rgba(16, 33, 58, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-name-en {
  display: block;
  margin-top: 8px;
  font-size: 0.46em;
  font-weight: 600;
  line-height: 1.35;
}

.detail-heading-project {
  display: block;
  margin-top: 6px;
  color: #66758a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.official-links:not(.is-empty) {
  padding: 16px 18px;
  background: #f3f6fa;
  border-left: 3px solid var(--color-accent);
}

.official-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  color: #2f5687;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-decoration: none;
}

.official-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.official-links.is-empty {
  min-height: 1px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.placeholder-note {
  padding: 16px 18px;
  border-left: 3px solid var(--color-accent);
  color: #725a2a;
  background: var(--color-accent-soft);
  font-size: 16px;
  line-height: 1.8;
}

.article-content h2 {
  margin: 30px 0 14px;
  font-size: 26px;
  line-height: 1.35;
}

.article-content p {
  color: #3d4858;
  font-size: 17px;
  line-height: 1.9;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.article-content li {
  position: relative;
  padding-left: 23px;
}

.article-content li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--color-primary);
}

[data-detail-page] .content-panel > h1 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.3;
}

[data-detail-summary] {
  margin: 24px 0 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 24px;
  width: min(100%, 1120px);
  max-width: none;
  margin: 0;
}

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

.contact-item {
  display: grid;
  gap: 10px;
  padding: 22px 26px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.contact-item strong {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  color: #172133;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-item p {
  margin: 0;
  color: var(--color-muted);
}

.contact-note {
  padding: 24px 26px;
  background: #f8fafc;
}

.contact-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  font-size: 18px;
}

.contact-note p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.85;
}

@media (max-width: 1100px) {
  .site-nav {
    --nav-font-size: 15px;
  }

  .nav-link {
    padding: 0 14px;
  }

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

  .country-project-section [data-project-list],
  .country-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .condition-grid,
  .project-option-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .section {
    padding: 34px 0;
  }

  .header-phone {
    min-height: 56px;
    display: inline-flex;
    justify-content: center;
    padding: 0;
    font-size: 16px;
  }

  .header-brand-row {
    min-height: 68px;
    justify-content: space-between;
    gap: 16px;
  }

  .menu-toggle {
    display: none;
  }

  .brand {
    display: inline-flex;
    margin-right: 0;
  }

  .site-nav-bar {
    padding: 0;
    border-top: 0;
  }

  .site-nav {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
    background: #3d5881;
    box-shadow: none;
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-link {
    min-height: 48px;
    flex: 1 1 auto;
    justify-content: center;
    padding: 0 8px;
    border-left: 0;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: var(--nav-font-size);
  }

  .nav-group {
    position: static;
  }

  .nav-group > .nav-link {
    width: 100%;
  }

  .nav-dropdown {
    top: 100%;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .nav-group:nth-last-child(-n + 3) > .nav-dropdown {
    right: 14px;
    left: 14px;
  }

  .nav-country > .nav-country-label::after {
    content: "+";
  }

  .nav-projects,
  .nav-group:nth-last-child(-n + 3) .nav-projects {
    position: static;
    width: 100%;
    border: 0;
    border-top: 1px solid #e6ebf1;
    box-shadow: none;
    background: #f6f8fb;
  }

  .nav-projects > a {
    min-height: 38px;
    padding-left: 28px;
    font-size: var(--nav-font-size);
  }

  .brand-logo {
    height: 38px;
  }

  .nav-link::after {
    display: none;
  }

  .hero-carousel,
  .hero-content {
    min-height: 600px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 38px;
  }

  .carousel-btn {
    display: none;
  }

  .section-head,
  .two-column,
  .about-showcase,
  .project-intro-block,
  .lawyer-showcase {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media-placeholder,
  .lawyer-photo-placeholder,
  .lawyer-photo-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-copy {
    height: auto;
  }

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

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

  .project-intro-media img {
    min-height: 0;
  }

  .project-intro-media,
  .project-intro-placeholder {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .lawyer-meta-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .about-showcase {
    gap: 28px;
  }

  .about-media {
    max-width: none;
  }

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

  .service-steps li:nth-child(2) {
    border-right: 0;
  }

  .service-steps li:nth-child(3n) {
    border-right: 1px solid #eeeeee;
  }

  .service-steps li:nth-child(even) {
    border-right: 0;
  }

  .service-steps li:nth-child(3),
  .service-steps li:nth-child(4),
  .service-steps li:nth-child(5),
  .service-steps li:nth-child(6) {
    border-top: 1px solid #eeeeee;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(n + 3) {
    border-top: 1px solid #dbe3ec;
  }

  .sidebar-panel {
    position: static;
  }

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

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

@media (max-width: 700px) {
  .list-page-panel .article-item {
    grid-template-columns: 1fr;
  }

  .grid-2.project-card-grid .project-card {
    display: block;
  }

  .grid-2.project-card-grid .card-media {
    aspect-ratio: 4 / 3;
  }

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

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

  .section {
    padding: 30px 0;
  }

  .section-title,
  .page-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-carousel,
  .hero-content {
    min-height: 560px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 33px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .home-qa-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-item {
    grid-template-columns: 1fr;
  }

  .list-page-panel [data-article-list="qa"] .article-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .list-page-panel [data-article-list="qa"] .article-item > a:first-child {
    display: none;
  }

  .list-page-panel [data-article-list="qa"] .article-body {
    padding: 0;
  }

  .article-body {
    padding: 0 18px 18px;
  }

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

  .case-grid .card-body {
    padding: 13px;
  }

  .case-grid .card-title {
    min-height: 44px;
    font-size: 15px;
  }

  .case-grid .card-desc {
    min-height: 0;
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .case-grid .card-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .case-grid .tag {
    font-size: 10px;
  }

  .about-media {
    padding: 0;
  }

  .lawyer-meta-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .service-steps li {
    min-height: 0;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
  }

  .service-steps li:last-child {
    border-bottom: 0;
  }

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

  .trust-grid article {
    min-height: 0;
    border-right: 1px solid #dbe3ec;
    border-bottom: 1px solid #dbe3ec;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .assurance-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .policy-review-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .stats,
  .condition-grid,
  .project-option-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .content-panel,
  .sidebar-panel {
    padding: 24px 20px;
  }

  [data-detail-page] .content-panel > h1 {
    font-size: 27px;
  }

  .back-to-top {
    right: 16px;
    bottom: 108px;
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Consolidated theme overrides */
.page-hero {
  min-height: 700px;
}

.section-kicker,
.hero-kicker {
  font-size: 16px;
}

.nav-project-en {
  font-size: 14px;
}

.project-name-en {
  font-size: 0.52em;
}

.detail-heading-project {
  font-size: 16px;
}

.hero-slide::after {
  background: rgba(4, 31, 67, 0.22);
}

.page-hero::before {
  background: rgba(4, 31, 67, 0.22);
}

.page-hero-content {
  text-shadow: 0 2px 8px rgba(4, 24, 48, 0.65);
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 560px;
  }
}
.passport-channel-groups { display: grid; gap: 34px; }
.passport-continent-group { border: 0; padding-top: 22px; }
.passport-continent-title { margin: 0 0 22px; padding: 12px 0; text-align: center; font-size: 24px; color: #18385f; border: 0; }
.passport-continent-title small { display: block; margin-top: 4px; font-size: 13px; font-weight: 500; letter-spacing: .08em; color: #9a6a18; text-transform: uppercase; }
.passport-country-row { display: block; padding: 18px 0; border: 0; }
.passport-country-title { margin: 0 0 14px; font-size: 18px; color: #18385f; text-align: left; }
.passport-country-row .project-card-grid { margin: 0; }
@media (max-width: 760px) { .passport-country-row { display: block; } .passport-country-title { margin: 0 0 10px; } }
