:root {
  --primary: #1a3a5c;
  --primary-dark: #0b1f3a;
  --accent: #c9a227;
  --accent-hover: #dbb84a;
  --accent-light: #f8f3e4;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f0f2f5;
  --white: #fff;
  --shadow: 0 8px 32px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 16px 48px rgba(11, 31, 58, 0.18);
  --radius: 10px;
  --header-h: 72px;
  --content-w: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

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

.container {
  width: min(var(--content-w), 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.06);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-text strong {
  font-size: 1rem;
  color: var(--text);
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-size: 0.92rem;
}

.nav a {
  color: var(--text);
  padding: 4px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.nav a.active {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero home */
.hero-home {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../res/image/6.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.78) 45%,
    rgba(11, 31, 58, 0.5) 100%
  );
}

.hero-home .container {
  position: relative;
  z-index: 1;
  padding: 96px 0 88px;
}

.hero-home .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 600;
}

.hero-brand {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  margin: 0 0 20px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-home .lead {
  max-width: 34em;
  opacity: 0.88;
  margin-bottom: 32px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.82rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

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

.btn-white,
.btn-gold {
  background: linear-gradient(135deg, var(--accent), #a8861f);
  color: var(--primary-dark);
  border: none;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-white:hover,
.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

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

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

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

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

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

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

/* Page header inner */
.page-head {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 48px 0 40px;
  border-bottom: 3px solid var(--accent);
}

.page-head h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-head h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.page-head .hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.page-body {
  padding: 40px 0 64px;
}

.page-body.white {
  background: var(--white);
}

/* Section */
.section {
  padding: 56px 0;
}

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

.section-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.65rem;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 12px auto 0;
}

.section-desc {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 520px;
  font-size: 0.95rem;
}

/* Why cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  color: var(--primary-dark);
}

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

/* Content prose */
.prose h2 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 14px;
  color: var(--text);
}

.prose .stage {
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 8px;
}

/* News */
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.news-tabs button {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--muted);
}

.news-tabs button.active {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  align-items: start;
}

.news-item .thumb {
  aspect-ratio: 16/10;
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
}

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

.news-item .thumb.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2rem;
}

.news-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.news-meta .tag {
  color: #8a6d12;
  font-weight: 600;
  margin-right: 12px;
}

.news-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.news-item h3 a {
  color: var(--text);
}

.news-item h3 a:hover {
  color: var(--accent);
}

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

/* Products */
.product-showcase {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card .pic {
  aspect-ratio: 4/3;
  background: var(--bg);
  cursor: zoom-in;
}

.product-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .body {
  padding: 20px 22px 24px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.product-card .spec {
  color: #8a6d12;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

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

.category-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-light);
}

.category-title:first-of-type {
  margin-top: 0;
}

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.gallery-mini img {
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: zoom-in;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

/* Video */
.video-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.video-card {
  flex: 0 0 min(260px, 75vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.video-portrait {
  aspect-ratio: 9/16;
  max-height: 400px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.video-portrait video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Recruit */
.recruit-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.job-card h3 {
  margin: 0 0 4px;
  color: var(--primary-dark);
}

.job-card .dept {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.job-card ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 0.9rem;
}

.apply-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.apply-panel h3 {
  margin: 0 0 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

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

.apply-panel .btn-primary {
  width: 100%;
  margin-top: 8px;
  border: none;
}

.recruit-callout {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  font-size: 0.92rem;
}

.recruit-callout a {
  font-weight: 700;
  font-size: 1.05rem;
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

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

.contact-card .phone {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Home preview rows */
.preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.preview-card .cap {
  padding: 14px 16px;
  font-size: 0.9rem;
}

.preview-card .cap a {
  font-weight: 600;
  color: var(--text);
}

.link-more {
  text-align: center;
  margin-top: 28px;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  margin-top: auto;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 56px 0 40px;
  font-size: 0.92rem;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-grid p {
  margin: 8px 0;
  line-height: 1.7;
}

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

.footer-grid a:hover {
  color: #fff;
}

.footer-phone {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--accent) !important;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.15);
}

.footer-copy p {
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1000px);
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .card-grid-3,
  .preview-row,
  .footer-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .apply-panel {
    position: static;
  }

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

/* B: Trust bar */
.trust-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 28px 0;
  border-bottom: 3px solid var(--accent);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-bar-item strong {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.trust-bar-item span {
  font-size: 0.82rem;
  opacity: 0.82;
}

/* B: Process */
.section.process-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 24px 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  background: var(--primary-dark);
  color: var(--accent);
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.95rem;
}

.process-step h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.process-step p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* B: Full product banner home */
.product-banner {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.product-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.cat-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--primary-dark);
}

.cat-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 31, 58, 0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.cat-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.cat-card p {
  margin: 0 0 12px;
  font-size: 0.82rem;
  opacity: 0.88;
}

.cat-card .link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.cat-card .link:hover {
  color: var(--accent-hover);
}

/* B: Product row (products page) */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.product-row.reverse {
  direction: rtl;
}

.product-row.reverse > * {
  direction: ltr;
}

.product-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  cursor: zoom-in;
}

.product-row-media img {
  width: 100%;
  display: block;
}

.product-row-media.contain {
  background: #f8fafc;
}

.product-row-media.contain img {
  object-fit: contain;
  max-height: 360px;
  margin: 0 auto;
}

.product-row-body h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  color: var(--primary-dark);
}

.product-row-body .spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.product-row-body .spec-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
  color: var(--text);
}

.product-row-body .spec-list li strong {
  color: var(--accent);
  margin-right: 8px;
}

.product-row-body > p {
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.75;
}

.product-thumb-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.product-thumb-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: zoom-in;
  transition: border-color 0.2s;
}

.product-thumb-row img:hover {
  border-color: var(--accent);
}

/* B: Video band */
.video-band {
  background: var(--primary-dark);
  color: #fff;
  padding: 56px 0 64px;
  margin-top: 48px;
}

.video-band .section-title {
  color: #fff;
}

.video-band .section-title::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.video-band .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.video-band .video-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.video-band .video-card h4 {
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 400;
  opacity: 0.85;
}

/* B: Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

@media (max-width: 900px) {
  .trust-bar-grid,
  .process-steps,
  .cat-showcase {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 600px) {
  .trust-bar-grid,
  .cat-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-home {
    min-height: auto;
  }

  .hero-home .container {
    padding: 72px 0 64px;
  }

  .hero-stats {
    gap: 20px;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
