/* 金诚无忧企业官网 — 全局样式 PRD 色彩与布局 */
:root {
  --color-primary: #1e3a8a;
  --color-primary-dark: #172554;
  --color-accent: #f97316;
  --color-accent-hover: #ea580c;
  --color-gold: #d4af37;
  --color-surface: #ffffff;
  --color-muted-bg: #dbeafe;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-on-dark: #ffffff;
  --shadow-sm: 0 1px 2px rgba(30, 58, 138, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --space-section: clamp(48px, 8vw, 80px);
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
    system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--color-accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--color-accent);
  color: #fff;
  z-index: 10000;
  border-radius: 8px;
}

.container {
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
}

.container--narrow {
  width: min(880px, 100% - 40px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  color: var(--color-on-dark);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--color-gold);
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-gold), #fbbf24);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand__tag {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}

.nav__link:hover,
.nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: inherit;
}

.header-phone:hover {
  color: var(--color-gold);
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--color-primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 17px;
  }

  .header-actions .btn {
    display: none;
  }

  .header-phone {
    font-size: 0.9rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: scale(1.02);
}

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.02);
}

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

.btn--outline-dark:hover {
  background: var(--color-muted-bg);
  transform: scale(1.02);
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-primary-dark) center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(30, 58, 138, 0.78) 45%,
    rgba(30, 58, 138, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(48px, 10vh, 100px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  opacity: 0.95;
  margin: 0 0 28px;
  max-width: 36ch;
}

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

.hero__phone-line {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero__aside {
  display: none;
}

@media (min-width: 1024px) {
  .hero__aside {
    display: block;
  }
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2em;
  opacity: 0.92;
}

.hero-card li + li {
  margin-top: 8px;
}

/* Sections */
.section {
  padding-block: var(--space-section);
}

.section--muted {
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-primary);
}

.section__desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Trust */
.trust {
  background: var(--color-surface);
  border-block: 1px solid #e5e7eb;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-block: 40px;
}

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

.trust-stat {
  text-align: center;
  padding: 16px;
}

.trust-stat__value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

.trust-stat__suffix {
  font-size: 1.25rem;
  font-weight: 700;
}

.trust-stat__label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-bottom: 40px;
}

.cert-card {
  width: min(160px, 45vw);
  aspect-ratio: 4/3;
  background: var(--color-muted-bg);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  padding: 12px;
  border: 1px dashed rgba(30, 58, 138, 0.25);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 24px;
}

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

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

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-muted-bg);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.service-card p {
  margin: 0 0 16px;
  flex: 1;
  color: var(--color-text-muted);
  font-size: 15px;
}

.service-card__link {
  font-weight: 600;
  color: var(--color-accent);
  align-self: flex-start;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* Logo marquee */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }
}

.logo-pill {
  flex-shrink: 0;
  padding: 12px 28px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Case cards */
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-card__stars {
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.case-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.case-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.case-card p {
  margin: 0;
  flex: 1;
  color: var(--color-text);
  font-size: 15px;
}

/* Features / advantages */
.features-grid {
  display: grid;
  gap: 24px;
}

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

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

.feature-item {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.feature-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.feature-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* News */
.news-grid {
  display: grid;
  gap: 24px;
}

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

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.28s var(--ease);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
}

.news-card__img {
  aspect-ratio: 16/10;
  background: var(--color-muted-bg) center / cover no-repeat;
}

.news-card__body {
  padding: 20px;
}

.news-card time {
  font-size: 13px;
  color: var(--color-text-muted);
}

.news-card h3 {
  margin: 8px 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.section__actions {
  text-align: center;
  margin-top: 36px;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  padding-block: 48px 28px;
  font-size: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-grid {
  display: grid;
  gap: 32px;
}

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

.footer-brand__name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 15px;
  color: #fff;
}

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

.footer-col li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* Page hero inner */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding-block: clamp(40px, 8vw, 72px);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.92;
  max-width: 56ch;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: #fff;
}

/* Content blocks */
.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-muted-bg);
}

.content-block ul,
.content-block ol {
  padding-left: 1.25em;
  color: var(--color-text);
}

.content-block li + li {
  margin-top: 8px;
}

.steps {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.step {
  background: var(--color-muted-bg);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
}

.step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 14px;
}

/* FAQ */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: #f8fafc;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
}

.form-msg {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

.form-msg.is-success {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-msg.is-error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Modal consult */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 24px;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease);
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

@media (min-width: 540px) {
  .modal-overlay {
    align-items: center;
  }

  .modal {
    border-radius: var(--radius-lg);
  }
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.modal__head h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.modal-close {
  background: #f3f4f6;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--color-text-muted);
}

/* Sticky service CTA */
.service-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.service-cta-bar .btn--primary {
  flex-shrink: 0;
}

body.has-sticky-cta {
  padding-bottom: 72px;
}

/* Article layout */
.article-meta {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
}

.article-body h2 {
  font-size: 1.35rem;
  margin-top: 32px;
}

.article-body p {
  margin: 0 0 1em;
}

/* News list filters */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  align-items: center;
}

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

.filter-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.filter-pill:hover,
.filter-pill.is-active {
  background: var(--color-muted-bg);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-family: inherit;
}

/* Two column news layout */
.layout-split {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .layout-split {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--color-primary);
}

.hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hot-list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.hot-list a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.hot-list span {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Case grid page */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.logo-wall__item {
  aspect-ratio: 16/10;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 8px;
  text-align: center;
}

/* Team */
.team-grid {
  display: grid;
  gap: 24px;
}

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

.team-member {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.team-member__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--color-muted-bg);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.team-member h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.team-member__role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Map */
.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card:hover,
  .btn--primary:hover,
  .btn--ghost:hover,
  .btn--outline-dark:hover {
    transform: none;
  }
}

/* Utils */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
