/* ============================================
   创投光影 - 主样式表
   CSS前缀: zc-
   配色: 深空蓝 #0A1931, 科技蓝 #185ADB, 薄荷绿 #6BFFB8, 月光白 #E6F1FF
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --zc-primary: #0A1931;
  --zc-secondary: #185ADB;
  --zc-accent: #6BFFB8;
  --zc-text: #E6F1FF;
  --zc-link: #185ADB;
  --zc-dark: #060F1F;
  --zc-card-bg: rgba(24, 90, 219, 0.08);
  --zc-glass: rgba(10, 25, 49, 0.75);
  --zc-border: rgba(107, 255, 184, 0.15);
  --zc-font-heading: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --zc-font-body: "Roboto", "PingFang SC", "Microsoft YaHei", sans-serif;
  --zc-radius: 12px;
  --zc-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --zc-transition: all 0.3s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--zc-font-body);
  background-color: var(--zc-primary);
  color: var(--zc-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--zc-secondary); text-decoration: none; transition: var(--zc-transition); }
a:hover { color: var(--zc-accent); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--zc-font-heading); font-weight: 700; line-height: 1.3; }

.fund-jammer-block { display: none !important; }

/* --- Container --- */
.zc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
#zc-header {
  width: 100%;
  background: linear-gradient(180deg, rgba(10,25,49,0.95) 0%, rgba(10,25,49,0.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--zc-border);
}

.zc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.zc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.zc-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--zc-secondary), var(--zc-accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--zc-primary);
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.zc-logo-icon::after {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border-left: 8px solid var(--zc-primary);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

.sp-logo-text {
  font-family: var(--zc-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zc-text);
  letter-spacing: 1px;
}

.zc-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.zc-nav-links li a {
  display: block;
  padding: 8px 16px;
  color: var(--zc-text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: var(--zc-transition);
}

.zc-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--zc-secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.zc-nav-links li a:hover::after,
.zc-nav-links li a.zc-active::after {
  width: 80%;
}

.zc-nav-links li a:hover { color: var(--zc-accent); }

/* Hamburger */
.zc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.zc-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--zc-text);
  transition: var(--zc-transition);
  border-radius: 2px;
}

/* Mobile Nav */
.zc-mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--zc-primary) 0%, var(--zc-dark) 100%);
  z-index: 2000;
  transition: right 0.35s ease;
  padding: 80px 24px 24px;
  border-left: 1px solid var(--zc-border);
}

.zc-mobile-nav.zc-open { right: 0; }

.zc-mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--zc-text);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--zc-border);
}

.zc-mobile-nav a:hover { color: var(--zc-accent); padding-left: 8px; }

.zc-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--zc-text);
  font-size: 28px;
  cursor: pointer;
}

.zc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--zc-transition);
}

.zc-overlay.zc-visible { opacity: 1; visibility: visible; }

/* --- Hero / Featured --- */
.zc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zc-primary) 0%, #0d2247 50%, var(--zc-dark) 100%);
}

.zc-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.zc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}

.zc-hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--zc-text), var(--zc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zc-hero-content p {
  font-size: 1.15rem;
  color: rgba(230, 241, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* --- Section Common --- */
.zc-section {
  padding: 80px 0;
  position: relative;
}

.zc-section-alt { background: var(--zc-dark); }

.zc-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.zc-section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--zc-text);
}

.zc-section-title p {
  font-size: 1rem;
  color: rgba(230,241,255,0.7);
  max-width: 640px;
  margin: 0 auto;
}

.zc-section-title .zc-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--zc-secondary), var(--zc-accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Cards --- */
.zc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.zc-card {
  background: var(--zc-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.zc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 90, 219, 0.2);
}

.zc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.zc-card-body { padding: 20px; }

.zc-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--zc-text);
}

.zc-card-body p {
  font-size: 0.9rem;
  color: rgba(230,241,255,0.7);
  margin-bottom: 16px;
}

/* --- Progress Bar --- */
.zc-progress-wrap {
  margin-bottom: 12px;
}

.zc-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(230,241,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.zc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--zc-secondary), var(--zc-accent));
  border-radius: 4px;
  transition: width 1.2s ease;
}

.zc-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-top: 6px;
  color: rgba(230,241,255,0.6);
}

.zc-progress-info .zc-amount { color: var(--zc-accent); font-weight: 600; }

/* --- Buttons --- */
.zc-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--zc-transition);
  text-align: center;
}

.zc-btn-primary {
  background: linear-gradient(135deg, var(--zc-secondary), #2a6fef);
  color: #fff;
  box-shadow: 0 4px 20px rgba(24, 90, 219, 0.35);
}

.zc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 90, 219, 0.5);
  color: #fff;
}

.zc-btn-accent {
  background: linear-gradient(135deg, var(--zc-accent), #4de8a0);
  color: var(--zc-primary);
  box-shadow: 0 4px 20px rgba(107, 255, 184, 0.25);
}

.zc-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 255, 184, 0.4);
  color: var(--zc-primary);
}

.zc-btn-outline {
  background: transparent;
  color: var(--zc-accent);
  border: 1px solid var(--zc-accent);
}

.zc-btn-outline:hover {
  background: var(--zc-accent);
  color: var(--zc-primary);
}

/* --- Countdown --- */
.zc-countdown {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.zc-countdown-item {
  background: rgba(24, 90, 219, 0.2);
  border-radius: 6px;
  padding: 4px 8px;
  text-align: center;
  min-width: 42px;
}

.zc-countdown-item .zc-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zc-accent);
}

.zc-countdown-item .zc-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(230,241,255,0.5);
  text-transform: uppercase;
}

/* --- Stats / Platform Data --- */
.zc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zc-stat-card {
  background: var(--zc-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--zc-transition);
}

.zc-stat-card:hover { transform: translateY(-4px); }

.zc-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--zc-accent);
  margin-bottom: 8px;
  font-family: var(--zc-font-heading);
}

.zc-stat-label {
  font-size: 0.95rem;
  color: rgba(230,241,255,0.7);
}

/* --- Investor / Creator Cards --- */
.zc-person-card {
  display: flex;
  gap: 20px;
  background: var(--zc-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius);
  padding: 24px;
  transition: var(--zc-transition);
}

.zc-person-card:hover { transform: translateY(-4px); }

.zc-person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--zc-border);
  flex-shrink: 0;
}

.zc-person-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.zc-person-info .zc-role { font-size: 0.85rem; color: var(--zc-accent); margin-bottom: 8px; }
.zc-person-info p { font-size: 0.9rem; color: rgba(230,241,255,0.7); }

/* --- Partners --- */
.zc-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.zc-partner-item {
  background: var(--zc-glass);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: var(--zc-transition);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(230,241,255,0.6);
}

.zc-partner-item:hover {
  border-color: var(--zc-secondary);
  color: var(--zc-text);
}

/* --- CTA Section --- */
.zc-cta {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--zc-dark) 0%, #0d2247 50%, var(--zc-primary) 100%);
  position: relative;
  overflow: hidden;
}

.zc-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.zc-cta p {
  font-size: 1.05rem;
  color: rgba(230,241,255,0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
#zc-footer {
  background: var(--zc-dark);
  border-top: 1px solid var(--zc-border);
  padding: 60px 0 0;
}

.zc-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.zc-footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--zc-text);
  position: relative;
  padding-bottom: 10px;
}

.zc-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--zc-accent);
}

.zc-footer-col ul { list-style: none; }

.zc-footer-col ul li { margin-bottom: 10px; }

.zc-footer-col ul li a {
  color: rgba(230,241,255,0.6);
  font-size: 0.9rem;
  transition: var(--zc-transition);
}

.zc-footer-col ul li a:hover { color: var(--zc-accent); padding-left: 4px; }

.zc-social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.zc-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--zc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(230,241,255,0.6);
  font-size: 0.85rem;
  transition: var(--zc-transition);
}

.zc-social-links a:hover {
  background: var(--zc-secondary);
  border-color: var(--zc-secondary);
  color: #fff;
}

.zc-footer-bottom {
  border-top: 1px solid var(--zc-border);
  padding: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(230,241,255,0.5);
  max-width: 1440px;
  margin: 0 auto;
}

.zc-footer-bottom p { margin-bottom: 6px; }
.zc-footer-bottom a { color: rgba(230,241,255,0.5); }
.zc-footer-bottom a:hover { color: var(--zc-accent); }

.zc-honor { color: var(--zc-accent); font-weight: 500; }

/* --- Page Banner --- */
.zc-page-banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zc-primary), var(--zc-dark));
}

.zc-page-banner img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.zc-page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.zc-page-banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.zc-page-banner-content p {
  font-size: 1.05rem;
  color: rgba(230,241,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Inner Page Content --- */
.zc-page-content {
  padding: 60px 0;
}

.zc-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.zc-article h2 { font-size: 1.6rem; margin: 32px 0 16px; color: var(--zc-text); }
.zc-article h3 { font-size: 1.3rem; margin: 24px 0 12px; color: var(--zc-text); }
.zc-article p { margin-bottom: 16px; color: rgba(230,241,255,0.85); line-height: 1.9; }
.zc-article img { border-radius: var(--zc-radius); margin: 24px 0; }

/* --- Wizard / Form --- */
.zc-wizard {
  max-width: 900px;
  margin: 0 auto;
}

.zc-wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
}

.zc-wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--zc-border);
}

.zc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.zc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zc-glass);
  border: 2px solid var(--zc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: var(--zc-transition);
}

.zc-step.zc-active .zc-step-num {
  background: var(--zc-secondary);
  border-color: var(--zc-accent);
  color: #fff;
}

.zc-step.zc-completed .zc-step-num {
  background: var(--zc-accent);
  border-color: var(--zc-accent);
  color: var(--zc-primary);
}

.zc-step-label {
  font-size: 0.78rem;
  color: rgba(230,241,255,0.5);
  text-align: center;
}

.zc-step.zc-active .zc-step-label { color: var(--zc-accent); }

.zc-form-panel {
  background: var(--zc-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius);
  padding: 40px;
}

.zc-form-group {
  margin-bottom: 24px;
}

.zc-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--zc-text);
}

.zc-form-group input,
.zc-form-group select,
.zc-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(230,241,255,0.05);
  border: 1px solid var(--zc-border);
  border-radius: 8px;
  color: var(--zc-text);
  font-size: 0.95rem;
  font-family: var(--zc-font-body);
  transition: var(--zc-transition);
}

.zc-form-group input:focus,
.zc-form-group select:focus,
.zc-form-group textarea:focus {
  outline: none;
  border-color: var(--zc-secondary);
  box-shadow: 0 0 0 3px rgba(24, 90, 219, 0.2);
}

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

.zc-form-hint {
  font-size: 0.78rem;
  color: rgba(230,241,255,0.4);
  margin-top: 4px;
}

.zc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.zc-form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

/* --- APP Download --- */
.zc-app-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zc-primary), var(--zc-dark));
}

.zc-app-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.zc-app-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  padding: 40px 24px;
}

.zc-app-text { flex: 1; }

.zc-app-text h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--zc-text), var(--zc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zc-app-text p {
  font-size: 1.05rem;
  color: rgba(230,241,255,0.8);
  margin-bottom: 32px;
  line-height: 1.8;
}

.zc-app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.zc-app-mockup {
  flex: 0 0 320px;
}

.zc-app-mockup img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.zc-qr-wrap {
  margin-top: 32px;
  padding: 20px;
  background: var(--zc-glass);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius);
  display: inline-block;
}

.zc-qr-wrap p {
  font-size: 0.85rem;
  color: rgba(230,241,255,0.6);
  margin-top: 12px;
  margin-bottom: 0;
}

/* --- Success Badge --- */
.zc-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.zc-badge-success { background: rgba(107,255,184,0.15); color: var(--zc-accent); }
.zc-badge-hot { background: rgba(219,24,24,0.15); color: #ff6b6b; }
.zc-badge-new { background: rgba(24,90,219,0.2); color: var(--zc-secondary); }

/* --- Tags --- */
.zc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.zc-tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  background: rgba(24,90,219,0.15);
  color: rgba(230,241,255,0.7);
}

/* --- Animate on scroll --- */
.zc-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zc-fade-in.zc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .zc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .zc-partners-grid { grid-template-columns: repeat(3, 1fr); }
  .zc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .zc-nav-links { display: none; }
  .zc-hamburger { display: flex; }
  
  .zc-hero-content h1 { font-size: 2rem; }
  .zc-hero { min-height: 70vh; }
  
  .zc-section { padding: 50px 0; }
  .zc-section-title h2 { font-size: 1.6rem; }
  
  .zc-card-grid { grid-template-columns: 1fr; }
  .zc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .zc-partners-grid { grid-template-columns: repeat(2, 1fr); }
  
  .zc-person-card { flex-direction: column; align-items: center; text-align: center; }
  
  .zc-app-content { flex-direction: column; text-align: center; }
  .zc-app-mockup { flex: 0 0 auto; max-width: 260px; }
  .zc-app-buttons { justify-content: center; }
  .zc-app-text h1 { font-size: 2rem; }
  
  .zc-footer-grid { grid-template-columns: 1fr; }
  
  .zc-page-banner { height: 260px; }
  .zc-page-banner-content h1 { font-size: 1.8rem; }
  
  .zc-wizard-steps { flex-wrap: wrap; gap: 8px; }
  .zc-form-row { grid-template-columns: 1fr; }
  .zc-form-panel { padding: 24px; }
}

@media (max-width: 360px) {
  html { font-size: 14px; }
  .zc-hero-content h1 { font-size: 1.6rem; }
  .zc-stats-grid { grid-template-columns: 1fr; }
  .zc-partners-grid { grid-template-columns: 1fr; }
  .zc-nav-inner { padding: 12px 16px; }
  .zc-container { padding: 0 16px; }
}

@media (min-width: 1440px) {
  .zc-container { padding: 0 40px; }
}
