/* lp-import.css — Import Agency LP */

/* ── DESIGN TOKENS (Bridging to Global Light Theme) ── */
:root {
  --ocean:    var(--text-primary, #0f172a);
  --ocean2:   var(--bg-white,     #ffffff);
  --ocean3:   var(--brand,        #2563eb);
  --signal:   var(--orange,       #f97316);
  --signal-h: var(--orange-hover, #ea6c0a);
  --sky:      var(--brand-pale,   #dbeafe);
  --steel:    var(--text-muted,   #64748b);
  --rule:     var(--border,       #e2e8f0);
  --white:    var(--bg-white,     #ffffff);
  --offwhite: var(--bg-soft,      #f8fafc);
  
  --shadow-sm: var(--shadow-sm,   0 1px 2px rgba(15,23,42,0.06));
  --shadow-md: var(--shadow,      0 4px 12px rgba(15,23,42,0.08));
  --shadow-lg: var(--shadow-lg,   0 16px 40px rgba(15,23,42,0.10));
}

/* Global resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--offwhite);
  color: var(--text-body, #334155);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── HEADER RIGHT ── */
.header-right { display: flex; align-items: center; gap: 24px; }

.header-phone {
  color: var(--brand-light, #3b82f6); font-size: 0.88rem;
  font-weight: 600; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--brand, #2563eb); }
.header-phone::before {
  content: '';
  display: inline-block; width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 1.8s infinite;
}

.header-cta-btn {
  background: var(--brand, #2563eb); color: #fff;
  padding: 9px 22px; border-radius: 5px; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 0.85rem; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.header-cta-btn:hover { background: var(--brand-hover, #1d4ed8); transform: translateY(-1px); }

/* ── HERO (Isolated Dark Theme) ── */
.hero {
  /* Scoped tokens for Hero only */
  --hero-bg:          #0d2f4e;
  --hero-text:        rgba(255,255,255,0.95);
  --hero-text-soft:   rgba(255,255,255,0.70);
  --hero-accent:      #f97316;                  /* Orange accent */
  --hero-cyan:        #f99a57;                 /* Cyan emphasis for Import page */
  --hero-badge-bg:    rgba(255,255,255,0.10);
  --hero-badge-bd:    rgba(255,255,255,0.22);
  --hero-badge-text:  rgba(255,255,255,0.92);
  
  position: relative;
  background-color: var(--hero-bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(37,99,235,0.25) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(13,47,78,0.85) 0%, rgba(13,47,78,0.95) 100%),
    url('https://assets.zhongshenchina.com/assets/images/import-bg-hero.webp');
  background-size: auto, auto, cover;
  background-position: center, center, center;
  /* Instead of absolute positioning the form strip, we use Flexbox to stack them naturally */
  display: flex; 
  flex-direction: column;
}

/* Inner container for the text and trust cards */
.hero-content {
  padding: 64px 5% 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  flex: 1; /* Pushes the form strip to the bottom naturally */
}

/* Left text column */
.hero-text { flex: 1; }

/* Right trust column cards (Dark Mode styling) */
.hero-trust {
  display: flex; flex-direction: column; gap: 12px;
}
.hero-trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--hero-accent);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(8px);
}
.hero-trust-card .tc-icon { font-size: 1.6rem; flex-shrink: 0; color: var(--hero-cyan); }
.hero-trust-card .tc-text {}
.hero-trust-card .tc-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.3rem; color: var(--hero-text);
  line-height: 1; display: block;
}
.hero-trust-card .tc-val span { color: var(--hero-accent); }
.hero-trust-card .tc-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-top: 3px; display: block;
}

/* Hero eyebrow badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hero-badge-bg);
  border: 1px solid var(--hero-badge-bd);
  color: var(--hero-badge-text); font-size: 0.72rem;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

/* Hero main headline */
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--hero-text); font-weight: 800;
  margin-bottom: 16px; line-height: 1.12;
}
.hero h1 em { font-style: normal; color: var(--hero-cyan); }

.hero-sub {
  color: var(--hero-text-soft); font-size: 1.05rem;
  line-height: 1.75; max-width: 560px; margin-bottom: 28px;
}

/* Dark theme bullets */
.hero-bullets {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 8px;
  color: var(--hero-text); font-size: 0.93rem; font-weight: 500;
}
.hero-bullets li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--hero-accent); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23f97316' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ── QUICK INQUIRY STRIP (Static Block layout) ── */
.hero-form-strip {
  background: var(--bg-white, #ffffff);
  padding: 24px 5%;
  display: flex; align-items: flex-end; flex-wrap: wrap; gap: 16px;
  /* Top border to cleanly separate from the dark hero */
  border-top: 4px solid var(--signal, #f97316);
  border-bottom: 1px solid var(--border-light, #f1f5f9);
  width: 100%;
}
.form-strip-label {
  flex: 0 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--text-primary, #0f172a);
  padding-bottom: 2px;
  white-space: nowrap;
}
.form-strip-label span { color: var(--brand, #2563eb); }

.form-strip-fields {
  flex: 1; display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
}
.form-strip-fields input,
.form-strip-fields select {
  flex: 1; min-width: 160px;
  padding: 11px 14px;
  border: 1.5px solid var(--border, #e2e8f0); border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.92rem;
  color: var(--text-primary, #0f172a); background: var(--bg-soft, #f8fafc);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-strip-fields input:focus,
.form-strip-fields select:focus {
  border-color: var(--brand, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  background: #fff;
}
.form-strip-submit {
  background: var(--signal); color: #fff;
  padding: 11px 28px; border: none; border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.form-strip-submit:hover { background: var(--signal-h); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249,115,22,0.4); }

/* ── FULL FORM PANEL ── */
.full-form-section {
  background: var(--bg-tint, #eff6ff); padding: 90px 5% 60px;
  border-bottom: 1px solid var(--border-light, #f1f5f9);
}
.full-form-inner {
  max-width: 860px; margin: 0 auto;
  background: var(--bg-white, #ffffff); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--border, #e2e8f0);
}

.full-form-header {
  background: var(--brand, #2563eb); padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--orange, #f97316);
}
.full-form-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--white); font-size: 1.05rem; font-weight: 700; margin: 0;
}
.full-form-header p {
  color: rgba(255,255,255,0.85); font-size: 0.82rem;
  display: flex; align-items: center; gap: 5px;
}
.full-form-header p::before { content: '⚡'; }

.full-form-body {
  padding: 28px 32px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px;
}
.form-row { display: flex; flex-direction: column; gap: 5px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted, #64748b);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--border, #e2e8f0); border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem;
  color: var(--text-primary, #0f172a); background: var(--bg-soft, #f8fafc);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--brand, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 80px; }

.form-submit {
  grid-column: 1 / -1;
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff; border: none; border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.form-submit:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(249,115,22,0.35); }

.form-assurance {
  grid-column: 1 / -1; text-align: center;
  font-size: 0.76rem; color: var(--text-light, #94a3b8);
  display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 8px;
}
.form-assurance::before { content: '🔒'; font-size: 0.8em; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--bg-white, #ffffff);
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.stat-cell {
  flex: 1; min-width: 130px;
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border-light, #f1f5f9);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px; background: var(--brand-light, #3b82f6);
}
.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.8rem; color: var(--text-primary, #0f172a);
  display: block; line-height: 1; margin-bottom: 6px;
}
.stat-val span { color: var(--brand, #2563eb); }
.stat-lbl { font-size: 0.78rem; color: var(--text-muted, #64748b); letter-spacing: 0.02em; font-weight: 600;}

/* ── SECTION HELPERS ── */
.sec-chip {
  display: inline-block;
  background: var(--brand-pale, #dbeafe); color: var(--brand-hover, #1d4ed8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
  border: 1px solid rgba(37,99,235,0.1); margin-bottom: 12px;
}
.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--text-primary, #0f172a);
  margin-bottom: 12px; line-height: 1.15;
}
.sec-sub {
  color: var(--text-body, #334155); font-size: 0.97rem;
  max-width: 560px; line-height: 1.75;
}

/* ── SERVICES ── */
.services-section { background: var(--bg-soft, #f8fafc); padding: 80px 5%; }
.services-head { margin-bottom: 48px; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-item {
  display: flex; gap: 0;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  background: var(--bg-white, #ffffff);
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}
.service-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--brand, #2563eb);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-item:hover {
  background: #fafaf8;
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
}
.service-item:hover::after { transform: scaleX(1); }

.srv-icon-col {
  flex: 0 0 64px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 0;
  font-size: 1.6rem; color: var(--brand, #2563eb);
  border-right: 1px solid var(--border-light, #f1f5f9);
  background: var(--bg-soft, #f8fafc);
}
.srv-body { flex: 1; padding: 20px 22px; }
.srv-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.97rem; font-weight: 700; color: var(--text-primary, #0f172a);
  margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.srv-body p { font-size: 0.85rem; color: var(--text-muted, #64748b); line-height: 1.7; }
.srv-tag {
  display: inline-block; margin-top: 10px;
}
.srv-tag span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-hover, #1d4ed8); background: var(--brand-pale, #dbeafe);
  border: 1px solid rgba(37,99,235,0.1); padding: 2px 8px; border-radius: 4px;
  white-space: nowrap;
}

/* ── WHY US ── */
.why-section { background: var(--bg-white, #ffffff); padding: 80px 5%; border-top: 1px solid var(--border-light, #f1f5f9); }
.why-inner { display: flex; flex-wrap: wrap; gap: 56px; align-items: flex-start; }
.why-text { flex: 1; min-width: 280px; margin-top: 0; padding-top: 0; }
.why-cards { flex: 1; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 0; padding-top: 0; }
.why-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text-body, #334155); line-height: 1.65;
}
.why-list li .check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(37,99,235,0.1); border: 1.5px solid var(--brand, #2563eb); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.why-list li .check::after {
  content: ''; width: 10px; height: 6px;
  border-left: 2px solid var(--brand, #2563eb); border-bottom: 2px solid var(--brand, #2563eb);
  transform: rotate(-45deg) translateY(-1px); display: block;
}

.why-card {
  background: var(--bg-soft, #f8fafc); padding: 24px 20px;
  border: 1px solid var(--border-light, #f1f5f9); border-radius: 8px;
  border-top: 3px solid var(--brand-light, #3b82f6);
  box-shadow: var(--shadow-sm);
  transition: border-top-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { border-top-color: var(--brand, #2563eb); transform: translateY(-3px); box-shadow: var(--shadow); background: #fff; }
.why-card-icon { font-size: 1.7rem; margin-bottom: 12px; color: var(--brand, #2563eb); }
.why-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--text-primary, #0f172a); margin-bottom: 6px; }
.why-card p  { font-size: 0.82rem; color: var(--text-muted, #64748b); line-height: 1.65; }

/* ── PROCESS ── */
.process-section { background: var(--bg-tint, #eff6ff); padding: 80px 5%; }
.process-section .sec-chip { background: #fff; border-color: rgba(37,99,235,0.15); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 22px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(37,99,235,0.15) 20%, rgba(37,99,235,0.15) 80%, transparent);
}
.p-step { text-align: center; padding: 0 16px; }
.p-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-white, #ffffff);
  border: 2px solid var(--brand-light, #3b82f6);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 0.9rem; color: var(--brand, #2563eb);
  margin-bottom: 20px; position: relative; z-index: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: var(--shadow-sm);
}
.p-step:hover .p-step-num { background: var(--brand, #2563eb); border-color: var(--brand, #2563eb); color: #fff; }
.p-step h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--text-primary, #0f172a); margin-bottom: 8px; }
.p-step p  { font-size: 0.82rem; color: var(--text-muted, #64748b); line-height: 1.65; }

/* ── WHO WE SERVE ── */
.audience-section { background: var(--bg-white, #ffffff); padding: 80px 5%; border-top: 1px solid var(--border-light, #f1f5f9); }
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 44px;
}
.audience-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border: 1px solid var(--border, #e2e8f0); border-radius: 8px;
  background: var(--bg-soft, #f8fafc);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.audience-card:hover { background: var(--white); border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow); }
.aud-icon-box {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 8px;
  background: var(--brand-pale, #dbeafe); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--brand, #2563eb);
}
.aud-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text-primary, #0f172a); margin-bottom: 6px; }
.aud-content p  { font-size: 0.84rem; color: var(--text-muted, #64748b); line-height: 1.7; }

/* ── FAQ ── */
.faq-section { background: var(--bg-soft, #f8fafc); padding: 80px 5%; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .sec-title { text-align: left; }
.faq-inner .sec-sub   { margin-bottom: 40px; }
.faq-item { background: var(--bg-white, #ffffff); border: 1px solid var(--border, #e2e8f0); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem; color: var(--text-primary, #0f172a);
  user-select: none; gap: 16px; padding: 18px 20px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-soft, #f8fafc); }
.faq-item.open .faq-q { background: var(--brand, #2563eb); color: var(--white); }
.faq-q .icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 4px;
  background: var(--brand-pale, #dbeafe); border: 1px solid rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--brand, #2563eb);
  line-height: 1;
  transition: transform 0.25s, background 0.2s, color 0.2s, border-color 0.2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--orange, #f97316); color: #fff; border-color: var(--orange, #f97316); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.9rem; color: var(--text-body, #334155); line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 280px; padding: 18px 20px; border-top: 1px solid var(--border, #e2e8f0); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--brand-pale, #dbeafe) 0%, var(--bg-tint, #eff6ff) 100%);
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(37,99,235,0.1);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--text-primary, #0f172a); margin-bottom: 14px; font-weight: 800;
}
.cta-band p { color: var(--text-body, #334155); margin-bottom: 36px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 36px; border-radius: 8px; border: none;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.97rem;
  cursor: pointer; letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
  transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.btn-primary:hover  { background: var(--orange-hover, #ea6c0a); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.4); }

.btn-secondary {
  background: var(--bg-white, #fff); color: var(--brand, #2563eb);
  padding: 14px 28px; border-radius: 6px;
  border: 1.5px solid rgba(37,99,235,0.3);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  font-size: 0.95rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--brand, #2563eb); background: rgba(37,99,235,0.05); transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr 300px; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: row; flex-wrap: wrap; }
  .hero-trust-card { flex: 1; min-width: 200px; }
  .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero-content { padding: 48px 5% 48px; }
  /* Quick Form Strip stacks vertically on tablet/mobile */
  .hero-form-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
  .form-strip-fields { flex-direction: column; width: 100%; align-items: stretch; }
  .form-strip-fields input, .form-strip-fields select { min-width: auto; width: 100%; flex: none; }
  .form-strip-submit { width: 100%; }
  
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .full-form-body { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .why-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-trust { display: none; }
  .srv-tag { display: none; } 
  .hero-bullets li { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 40px 4% 32px; }
  .hero h1 { font-size: 1.85rem; }
  .header-cta-btn { display: none; }
  .header-phone { font-size: 0; }
  .header-phone::after {
    content: 'WhatsApp';
    font-size: 0.85rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  /* Ensure dark background holds on mobile */
  .hero {
    background-image:
      radial-gradient(ellipse 60% 50% at 10% 40%, rgba(37,99,235,0.2) 0%, transparent 70%),
      linear-gradient(to bottom, rgba(13,47,78,0.85) 0%, rgba(13,47,78,0.95) 100%),
      url('https://assets.zhongshenchina.com/assets/images/import-bg-hero.webp');
  }

  /* The strip form is hidden on small mobile, replaced by the mobile-form-section */
  .hero-form-strip { display: none; }
  .hide-on-mobile { display: none !important; }

  .hero h1     { font-size: 1.65rem; margin-bottom: 12px; }
  .hero-sub    { font-size: 0.92rem; margin-bottom: 16px; }
  .hero-badge  { margin-bottom: 14px; padding: 5px 10px; font-size: 0.7rem; }
  .hero-bullets li { font-size: 0.88rem; }

  .cta-footer { display: none; }

  #mobile-form-section {
    background: linear-gradient(135deg, var(--bg-tint, #eff6ff) 0%, var(--bg-soft, #f8fafc) 100%);
    padding: 40px 5% 48px;
    border-top: 1px solid rgba(37,99,235,0.1);
  }
  #mobile-form-section .hero-form-wrap {
    display: block;
    max-width: 480px;
    margin: 0 auto;
    flex: none;
  }
}

@media (min-width: 769px) {
  #mobile-form-section { display: none; }
}