/* ============== 基础 ============== */
:root {
  --c-primary: #0b3d8f;
  --c-primary-2: #165dff;
  --c-primary-3: #4080ff;
  --c-accent: #00c2ff;
  --c-bg: #f5f8ff;
  --c-bg-2: #eef3ff;
  --c-card: #ffffff;
  --c-text: #0e1a35;
  --c-text-2: #4a5874;
  --c-text-3: #8693ad;
  --c-line: #e3e9f7;
  --c-gold: #d49a36;
  --shadow-sm: 0 2px 8px rgba(11, 61, 143, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 61, 143, 0.10);
  --shadow-lg: 0 16px 40px rgba(11, 61, 143, 0.16);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue",
               "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans CN", sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  padding-bottom: 76px; /* 给悬浮按钮留位 */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.hl {
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-2) 50%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary-2);
  letter-spacing: 0.18em;
  background: rgba(22, 93, 255, 0.10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--c-text-2);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
}

/* ============== 顶部导航 ============== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
}
.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.topbar-phone {
  font-weight: 700;
  color: var(--c-primary-2);
  font-size: 14px;
  background: rgba(22, 93, 255, 0.10);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  color: #fff;
  padding: 80px 20px 90px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 194, 255, 0.35), transparent 60%),
    radial-gradient(800px 500px at 10% 0%, rgba(64, 128, 255, 0.45), transparent 60%),
    linear-gradient(135deg, #06245a 0%, #0b3d8f 45%, #165dff 100%);
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: right center;
  opacity: 0.18;
  mix-blend-mode: screen;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #b8d4ff;
  border: 1px solid rgba(184, 212, 255, 0.4);
  background: rgba(11, 61, 143, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.hero-title .hl {
  background: linear-gradient(90deg, #00c2ff 0%, #66e0ff 50%, #b8ecff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #ff7a45, #ff5a1f);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255, 90, 31, 0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.btn-block { width: 100%; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.stat {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  padding: 14px 8px;
}
.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.stat-num small {
  font-size: 12px;
  font-weight: 600;
  color: #b8ecff;
  margin-left: 2px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: var(--c-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 90%);
  z-index: 1;
}

/* ============== 通用 section 间距 ============== */
section { padding: 60px 0; }
.pain { background: var(--c-bg); }
.about { background: var(--c-bg-2); }
.services { background: var(--c-bg); }
.timeline-section { background: var(--c-bg-2); }
.culture { background: var(--c-bg); }
.office { background: var(--c-bg-2); }
.honor { background: var(--c-bg); }
.contact { background: var(--c-bg-2); padding-bottom: 100px; }

/* ============== 痛点 ============== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.pain-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-icon { font-size: 40px; margin-bottom: 10px; }
.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.pain-card p { color: var(--c-text-2); font-size: 14px; }
.pain-solution {
  text-align: center;
  background: linear-gradient(135deg, #0b3d8f, #165dff);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}
.pain-solution strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffd97a;
  letter-spacing: 1px;
}
.pain-solution p { font-size: 15px; line-height: 1.7; }
.pain-solution em { color: #ffd97a; font-style: normal; font-weight: 600; }

/* ============== 公司概况 ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.info-list {
  display: grid;
  gap: 10px;
}
.info-list li {
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--c-primary-2);
}
.info-label {
  font-size: 12px;
  color: var(--c-text-3);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.55;
}

/* ============== 服务案例 ============== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-primary-2), var(--c-accent));
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-num {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-primary-2), var(--c-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 12px;
}
.service-card ul li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--c-text-2);
  margin-bottom: 6px;
  line-height: 1.6;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--c-primary-2);
  border-radius: 50%;
}

/* ============== 时间轴 ============== */
.timeline {
  position: relative;
  padding-left: 26px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary-2), var(--c-accent));
  border-radius: 2px;
}
.timeline li {
  position: relative;
  padding-bottom: 22px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-primary-2);
  box-shadow: 0 0 0 4px rgba(22, 93, 255, 0.15);
}
.t-year {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.t-body {
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--c-text-2);
  box-shadow: var(--shadow-sm);
}

/* ============== 企业文化 ============== */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.culture-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
}
.culture-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.5;
}
.culture-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary-2);
  background: rgba(22, 93, 255, 0.10);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.culture-featured {
  background: linear-gradient(135deg, #0b3d8f, #165dff);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-md);
}
.culture-featured h3 { color: #fff; font-size: 19px; }
.culture-featured p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.culture-featured .culture-tag {
  background: rgba(255, 217, 122, 0.2);
  color: #ffd97a;
}
.org-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: var(--c-text);
  margin: 8px 0 16px;
}
.org-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.org-wrap img { margin: 0 auto; max-height: 380px; }

/* ============== 办公环境 ============== */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.office-card {
  margin: 0;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.office-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.office-card figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--c-text-2);
  text-align: center;
  line-height: 1.5;
}

/* ============== 荣誉奖项 ============== */
.honor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.honor-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.honor-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(212, 154, 54, 0.12), transparent 70%);
}
.honor-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.honor-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.honor-card p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.honor-card strong { color: var(--c-primary); }
.honor-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.honor-photo-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--c-bg-2);
}

/* ============== 联系方式 ============== */
.contact-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.contact-left {
  padding: 32px 24px;
  background: linear-gradient(135deg, #0b3d8f, #165dff);
  color: #fff;
}
.contact-left h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.contact-left > p { font-size: 14px; color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; }
.contact-left .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 12px;
}
.contact-info {
  display: grid;
  gap: 14px;
}
.contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
.ci-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.ci-value a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.ci-value small { color: rgba(255, 255, 255, 0.7); font-size: 12px; }

.contact-form {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.contact-form label {
  display: block;
}
.contact-form label > span {
  display: block;
  font-size: 13px;
  color: var(--c-text-2);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-form label > span em {
  color: var(--c-text-3);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-bg);
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-primary-2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 70px; }
.form-tip {
  font-size: 12px;
  color: var(--c-text-3);
  text-align: center;
  margin-top: 4px;
}

/* ============== 底部 ============== */
.footer {
  background: #061e44;
  color: #a8b9d4;
  padding: 36px 0 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.fb-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.fb-en {
  font-size: 12px;
  color: #6e83a8;
  margin-top: 2px;
}
.footer-meta p { font-size: 13px; line-height: 1.7; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-top: 6px;
  color: #6e83a8;
  font-size: 12px;
  text-align: center;
}

/* ============== 悬浮按钮 ============== */
.floating-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-line);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(11, 61, 143, 0.08);
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.fc-form {
  background: linear-gradient(135deg, #2f6bff, #1746c8);
}
.fc-ico { font-size: 18px; }
.fc-text { display: flex; flex-direction: column; line-height: 1.1; }
.fc-text small { font-size: 10px; font-weight: 500; opacity: 0.85; letter-spacing: 0.1em; }

/* ============== 模态/弹层 ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 45, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 360px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-lg);
  animation: pop 0.22s ease;
  text-align: center;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 26px;
  line-height: 1;
  color: var(--c-text-3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.modal-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
}
.modal-tip {
  color: var(--c-text-2);
  font-size: 13px;
  margin-bottom: 18px;
}
.qr-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.qr-image {
  width: 220px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 20px rgba(14, 26, 53, 0.08);
}

/* ============== Toast ============== */
.toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  background: rgba(8, 18, 45, 0.88);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  animation: toastIn 0.2s ease;
}
.toast[hidden] { display: none; }
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* ============== 滚动渐显 ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== 响应式 ============== */
@media (min-width: 700px) {
  body { font-size: 16px; }
  section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .section-head h2 { font-size: 36px; }
  .hero-title { font-size: 56px; }
  .hero { padding: 110px 20px 130px; }
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1.3fr; gap: 32px; }
  .about-photo img { min-height: 100%; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-featured { grid-column: span 2; }
  .office-grid { grid-template-columns: repeat(4, 1fr); }
  .honor-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-card { grid-template-columns: 1fr 1.05fr; }
  .contact-left { padding: 44px 36px; }
  .contact-form { padding: 36px 32px; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .copyright { text-align: right; }
}

@media (min-width: 1024px) {
  .hero { padding: 130px 20px 150px; }
  .hero-stats { max-width: 820px; }
  .stat-num { font-size: 30px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .topbar-inner { padding: 8px 14px; }
  .container { padding: 0 14px; }
  .fc-text small { display: none; }
}
