:root {
  --navy: #003d7a;
  --navy-deep: #002849;
  --navy-mid: #004a94;
  --orange: #ff6b00;
  --orange-hot: #e55d00;
  --gold: #d4a05a;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e8edf3;
  --paper: #f4f7fb;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 45, 92, 0.1);
  --shadow-sm: 0 4px 16px rgba(0, 45, 92, 0.08);
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --display: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  --max: 1200px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0, 20, 50, 0.28);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--white);
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 3px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(46vw, 380px);
}

.brand-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  white-space: nowrap;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
}

.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 0.5rem 0 1rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a.is-active,
.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .header-cta {
  display: flex;
  justify-content: center;
  margin: 0.85rem 1rem 0;
}

@media (min-width: 980px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .menu-btn,
  .mobile-nav {
    display: none !important;
  }

  .brand-text strong {
    max-width: none;
    font-size: 1rem;
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.2s transform, 0.2s background, 0.2s color, 0.2s border-color;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hot);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  min-width: 180px;
}

.btn-navy:hover {
  background: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: max(620px, calc(100vh - var(--header-h)));
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #003d7a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 40, 90, 0.55) 0%,
    rgba(0, 50, 110, 0.68) 45%,
    rgba(0, 35, 80, 0.82) 100%
  );
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 7rem;
  max-width: 860px;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  animation: rise 0.8s ease both;
}

.hero p {
  margin: 0 auto 1.8rem;
  max-width: 36em;
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  animation: rise 0.9s 0.08s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  animation: rise 1s 0.15s ease both;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.scroll-hint i {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  animation: scrollDot 1.4s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== Stats ========== */
.stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--line);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 600;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat:nth-child(odd)::after,
  .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: var(--line);
  }

  .stat:last-child::after {
    display: none;
  }
}

/* ========== Sections ========== */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--paper);
}

.section-head {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-head .en {
  display: block;
  margin-top: 0.45rem;
  color: #9aa6b5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-head p {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

.mt-3 {
  margin-top: 2.5rem;
}

/* ========== About ========== */
.about-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 920px) {
  .about-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.about-copy h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.about-copy > p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 1.5rem 0 1.6rem;
}

.mini-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.mini-stats strong {
  display: block;
  font-family: var(--display);
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1.1;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.about-emblem {
  display: grid;
  place-items: center;
}

.emblem-ring {
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0%, #f2f6fb 48%, #e4ebf5 100%);
  border: 12px solid rgba(0, 61, 122, 0.07);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: floatSoft 5.5s ease-in-out infinite;
}

.emblem-ring img {
  width: 56%;
  margin-bottom: 0.7rem;
}

.emblem-ring p {
  margin: 0;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.emblem-ring span {
  margin-top: 0.2rem;
  color: #8b96a8;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

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

/* ========== Culture ========== */
.culture-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 720px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .culture-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.culture-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.culture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.culture-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1rem;
}

.culture-icon.is-orange {
  background: linear-gradient(135deg, #ff8f3d, #ff6b00);
}

.culture-icon.is-green {
  background: linear-gradient(135deg, #34d399, #059669);
}

.culture-icon.is-gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.culture-icon.is-blue {
  background: linear-gradient(135deg, #60a5fa, #003d7a);
}

.culture-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.08rem;
}

.culture-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========== Certs ========== */
.cert-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cert-card {
  background: #eef3f8;
  border-radius: 12px;
  min-height: 150px;
  padding: 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  border: 1px solid #e2e9f1;
  transition: transform 0.25s, background 0.25s;
}

.cert-card:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cert-badge {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(0, 61, 122, 0.1);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.cert-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.4;
}

.cert-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ========== Services ========== */
.grid-3 {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 760px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 61, 122, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0, 61, 122, 0.08);
}

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

.service-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-link {
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
}

.card-link:hover {
  color: var(--orange-hot);
}

/* ========== Cases ========== */
.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.badge {
  position: absolute;
  top: 0.75rem;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.badge-left {
  left: 0.75rem;
  background: #dc2626;
}

.badge-right {
  right: 0.75rem;
  background: #16a34a;
}

.card-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.meta {
  margin: 0 0 0.55rem;
  color: #9aa3b2;
  font-size: 0.85rem;
}

.card-body p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========== Team ========== */
.grid-2 {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-home {
    max-width: 920px;
    margin-inline: auto;
  }
}

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

.role {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

/* ========== Contact band ========== */
.contact-band {
  background: linear-gradient(135deg, #002849 0%, #003d7a 55%, #0056a3 100%);
  color: #fff;
  padding: 4.5rem 0;
}

.contact-band-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .contact-band-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.2rem;
  }
}

.home-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.7rem;
  display: grid;
  gap: 0.9rem;
}

.home-form h2,
.home-contact h2 {
  margin: 0;
  font-size: 1.55rem;
}

.home-form > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.home-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.home-form input,
.home-form select,
.home-form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
  background: #fff;
  color: var(--ink);
}

.home-form textarea {
  min-height: 96px;
  resize: vertical;
}

.home-form-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .home-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.home-contact {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.home-contact-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.home-contact-item span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.3rem;
}

.home-contact-item a,
.home-contact-item p {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.home-contact-item a[href^="tel"] {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.55rem;
}

.home-contact-item small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* ========== Page hero (inner pages) ========== */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-mid));
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ========== Footer ========== */
.site-footer {
  background: #0f1a2b;
  color: #b8c2d3;
  padding: 3.4rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.site-footer h3 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.site-footer p,
.site-footer li {
  font-size: 0.9rem;
  line-height: 1.75;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-brand {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 3px;
}

.footer-brand strong {
  color: #fff;
  display: block;
}

.footer-bottom {
  margin-top: 2.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.84rem;
  color: #7f8aa0;
}

/* ========== Shared inner page bits ========== */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.split-copy h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.split-copy p {
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.split-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 61, 122, 0.08);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.grid-4 {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding-left: 1.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(var(--orange), var(--navy));
}

.timeline-item {
  position: relative;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-item .year {
  font-family: var(--display);
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline-item h3 {
  margin: 0.15rem 0 0.35rem;
  color: var(--navy);
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-block .split {
  gap: 0;
}

.service-block .card-media {
  aspect-ratio: auto;
  min-height: 240px;
}

.service-block .card-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.service-block .card-body {
  padding: 1.7rem;
}

.service-block h3 {
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
  color: var(--navy);
}

.service-block h4 {
  color: var(--navy);
  margin: 1.1rem 0 0.7rem;
  font-size: 1rem;
}

.steps {
  display: grid;
  gap: 0.7rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .service-block .split {
    grid-template-columns: 1fr 1.1fr;
  }

  .service-block.is-reverse .card-media {
    order: 2;
  }

  .service-block.is-reverse .card-body {
    order: 1;
  }
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.compare-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-before {
  left: 0.55rem;
  background: #dc2626;
}

.badge-after {
  left: 0.55rem;
  background: #16a34a;
}

.tag {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
}

.cred {
  white-space: pre-line;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.7rem 0;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.form {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.95rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
}

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

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

.contact-info {
  display: grid;
  gap: 0.9rem;
}

.info-block {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.info-block h3 {
  margin: 0 0 0.3rem;
  color: var(--navy);
}

.info-block a,
.info-block p {
  margin: 0;
  color: var(--muted);
}

.info-block .phone {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--display);
}

.faq {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.faq h3 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 1.02rem;
}

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

.section-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
}

.cta-band {
  text-align: center;
  padding: 3.4rem 0;
}

.cta-band h2 {
  margin: 0 0 0.65rem;
}

.cta-band p {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Rich content ========== */
.rich-content {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.rich-content p {
  margin: 0 0 0.75rem;
}

.rich-content p:last-child {
  margin-bottom: 0;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.75rem 0;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
  color: var(--navy);
  margin: 1rem 0 0.5rem;
}

.rich-content ul,
.rich-content ol {
  margin: 0.4rem 0 0.8rem 1.2rem;
  padding: 0;
  list-style: revert;
}

.rich-content a {
  color: var(--orange);
  text-decoration: underline;
}

.article-body {
  color: var(--ink);
  font-size: 1.02rem;
}

.article-body p {
  margin-bottom: 1rem;
}

/* ========== News ========== */
.news-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-cover {
  display: block;
  aspect-ratio: 16 / 10;
  background: #dbe4ef;
  overflow: hidden;
}

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

.news-cover-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  color: #7f93ad;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #e8eef6, #d5e0ef);
}

.news-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  font-size: 0.78rem;
  color: #8a98ab;
  margin-bottom: 0.55rem;
}

.news-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.45;
}

.news-body h3 a {
  color: var(--navy);
}

.news-body h3 a:hover {
  color: var(--orange);
}

.news-body > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.news-list {
  display: grid;
  gap: 1.25rem;
}

.news-list-item {
  display: grid;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 800px) {
  .news-list-item {
    grid-template-columns: 280px 1fr;
    align-items: stretch;
  }
}

.news-list-cover {
  display: block;
  min-height: 180px;
  background: #dbe4ef;
}

.news-list-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-list-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.news-list-body h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.news-list-body h2 a {
  color: var(--navy);
}

.news-list-body h2 a:hover {
  color: var(--orange);
}

.news-list-body > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.page-hero-crumb {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-crumb a {
  color: rgba(255, 255, 255, 0.88);
}

.news-detail-meta {
  margin: 0.65rem 0 0 !important;
  opacity: 0.85;
}

.news-detail-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 980px) {
  .news-detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }
}

.news-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.news-article-cover {
  margin: -0.2rem 0 1.2rem;
  border-radius: 10px;
  overflow: hidden;
}

.news-article-cover img {
  width: 100%;
  display: block;
}

.news-lead {
  margin: 0 0 1.2rem;
  padding: 0.9rem 1rem;
  background: var(--paper);
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-size: 0.98rem;
}

.news-article-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.news-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.news-aside h3 {
  margin: 0 0 0.9rem;
  color: var(--navy);
  font-size: 1rem;
}

.news-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.news-aside-list a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  align-items: center;
}

.news-aside-list img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.news-aside-list strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.4;
}

.news-aside-list em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
}

