*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0a4f8f;
  --blue-dark: #063466;
  --blue-light: #1670c0;
  --accent: #e8a020;
  --accent-dark: #c47d00;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --text: #1a2233;
  --text-mid: #3a4a60;
  --border: #d0dcea;
  --radius: 6px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; font-size: 16px; line-height: 1.6; }

/* ─── HEADER ─────────────────────────────── */
#site-header {
  background: var(--blue-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
  flex-wrap: wrap;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-text span { color: var(--accent); }
.header-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.header-contacts a {
  color: #c8ddf5;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.header-contacts a:hover { color: #fff; }
.header-contacts a svg { flex-shrink: 0; }
.btn-inquiry-sm {
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .5px;
  padding: 9px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  transition: background .2s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-inquiry-sm:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ─── BANNER ─────────────────────────────── */
#banner {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('/cncfdq/2026/05/15/ad-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
/* Gradient factory SVG background (no company name) */

.banner-overlay {
  position: absolute;
  inset: 0;
}
.banner-inner {
  max-width: 1540px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.banner-left { flex: 1 1 420px; }
.banner-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.banner-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.banner-h1 em { color: var(--accent); font-style: normal; }
.banner-sub {
  color: #fff;
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 729px;
}
.banner-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  color: #d8ecff;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(232,160,32,.35);
  text-decoration: none;
}
.btn-cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.45); }

/* Banner Form */
.banner-form-wrap {
  flex: 0 0 464px;
  background: rgba(255,255,255,.97);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.banner-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.banner-form-wrap p { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 18px; text-transform: uppercase; }
.form-group label em { color: #c0392b; font-style: normal; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: 10px 13px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue-light); }
.form-group textarea { height: 80px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
}
.btn-submit:hover { background: var(--blue-light); }

/* ─── SECTIONS ────────────────────────────── */
.section-wrap { max-width: 1540px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.section-blue { background: var(--blue-dark); }

.sec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::after { content: ''; flex: 0 0 40px; height: 2px; background: var(--accent); border-radius: 2px; }
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}
.sec-title-white { color: #fff; }
.sec-sub { font-size: 18px; color: var(--text-mid); margin-bottom: 40px; }

/* Stats bar */
.stats-bar {
  background: var(--blue);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 16px; color: #fff; font-weight: 500; margin-top: 4px; }

/* ─── PRODUCT GRID ────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(10,79,143,.18);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.product-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.product-info {
  padding: 14px 16px 18px;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 10px;
}
.btn-quote {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 7px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-quote:hover { background: var(--blue-light); }
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.divider-line { flex: 1; height: 2px; background: var(--border); }
.divider-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ─── WHY US ──────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 30px 26px;
  transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.1); }
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-card p { font-size: 18px; color: #aec9e8; line-height: 1.65; }

/* ─── PROCESS ─────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.step-line {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step:last-child .step-line { display: none; }
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-desc { font-size: 18px; color: var(--text-mid); line-height: 1.55; }

/* ─── ABOUT / FACTORY ─────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text .sec-sub { margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 6px;
  border-left: 4px solid var(--blue);
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-text h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3px;
}
.about-feature-text p { font-size: 18px; color: var(--text-mid); }

.factory-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.factory-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.factory-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ─── CERTIFICATES ────────────────────────── */
.cert-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cert-img {
  width: 180px;
  height: 240px;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.cert-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.cert-text p { font-size: 16px; color: var(--text-mid); margin-bottom: 14px; max-width: 520px; }
.cert-points { display: flex; flex-direction: column; gap: 10px; }
.cert-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.cert-point::before { content: '✓'; color: var(--blue); font-size: 18px; font-weight: 700; }

/* ─── FAQ + FOOTER FORM ───────────────────── */
#footer-section { background: var(--text); padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.footer-left h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 35px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
}
.faq-a { font-size: 16px; color: #9aafcb; line-height: 1.7; margin-top: 10px;}
.faq-item.open .faq-a { display: block; }

.footer-form { background: rgba(255,255,255,.05); border-radius: 10px; padding: 30px 28px; border: 1px solid rgba(255,255,255,.1); }
.footer-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-form p { font-size: 16px; color: #9aafcb; margin-bottom: 20px; }
.footer-form .form-group label { color: #fff; }
.footer-form .form-group input,
.footer-form .form-group textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.footer-form .form-group input::placeholder,
.footer-form .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.footer-form .form-group input:focus,
.footer-form .form-group textarea:focus { border-color: var(--accent); }
.footer-form .btn-submit { background: #E5A124 !important; }

/* bottom bar */
.bottom-bar {
  background: #0d1520;
  padding: 18px 0;
  text-align: center;
}
.bottom-bar p { font-size: 14px; color: #5a7090; }

/* ─── POPUP FORM ──────────────────────────── */
#pups_from {
  position: fixed;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#pups_from.is-open {
  display: flex;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.close-btn:hover { color: var(--text); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .banner-inner { flex-direction: column; }
  .banner-form-wrap { display: none; }
  .banner-h1 { font-size: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .cert-row { flex-direction: column; }
  .cert-img { width: 150px; height: 200px; }
}
@media (max-width: 640px) {
  .header-inner { padding: 10px 14px; }
  .logo-text { font-size: 17px; }
  .header-contacts { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 30px; }
  .stats-inner { gap: 16px; }
  .stat-num { font-size: 32px; }
  .section { padding: 50px 0; }
  .factory-gallery { grid-template-columns: 1fr; }
  .factory-gallery img:first-child { aspect-ratio: 16/9; }
  .footer-form { padding: 22px 18px; }
  .popup-inner { padding: 24px 18px; }
}
.Stick {
    position: fixed;
    right: 20px;
    bottom: 55px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #E5A124;
    cursor: pointer;
    z-index: 11111 !important;
}
#Pop_UpsBtn {
    background: url(/cncfdq/2026/05/11/youxaing1.png) no-repeat center #E5A124 !important;
    right: 20px !important;
    bottom: 135px !important;
    z-index: 11111 !important;
}
.banner-sub em {
    color: #E5A124;
    font-size: 20px;
    font-weight: 900;
}
#pups_from h4 {
      font-size: 20px;
}
#pups_from form ul li label {
      font-size: 16px;
          font-weight: 600;
}
#pups_from form ul li input[type="submit"] {
  background: #E5A124;
}