/* ============================================================
   ORDER Cleanroom Landing Page — style.css
   B2B tone: precise, industrial, authoritative
   Palette: deep navy #0D2240, steel blue #1B5299, 
            signal teal #00A8A8, off-white #F5F6F8, 
            warm white #FFFFFF, mid-grey #6B7280
   Typography: Barlow Condensed (headings) + Inter (body)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2332;
  background: #ffffff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00A8A8;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #0D2240;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: #6B7280;
  max-width: 680px;
  margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #00A8A8;
  color: #ffffff;
  border: 2px solid #00A8A8;
}
.btn-primary:hover { background: #008a8a; border-color: #008a8a; }

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  border: none;
  background: #00A8A8;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-full:hover { background: #008a8a; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0D2240;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.header-nav a {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.header-nav a:hover { color: #00A8A8; }

.header-tel {
  font-size: 13px;
  font-weight: 600;
  color: #00A8A8;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0D2240;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: #0D2240;
  background-image:
    linear-gradient(135deg, rgba(13,34,64,0.5) 0%, rgba(27,82,153,0) 100%),
    url('/template/en/images/banner-list.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, #0D2240 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,168,168,0.15);
  border: 1px solid rgba(0,168,168,0.4);
  color: #00A8A8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 60px);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 2;
    max-width: 580px;
    font-weight: 600;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 2;
  background: #1B5299;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: 96px 0;
  background: #F5F6F8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00A8A8;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.product-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 22px;
  color: #0D2240;
  margin-bottom: 12px;
}

.product-body p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-specs {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.product-specs li {
  font-size: 13.5px;
  color: #374151;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.product-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00A8A8;
  font-weight: 700;
  font-size: 12px;
}

.product-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #1B5299;
  transition: color 0.15s;
  margin-top: auto;
}
.product-link:hover { color: #00A8A8; }

/* ============================================================
   WHY ORDER
   ============================================================ */
.why-order {
  padding: 96px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  padding: 28px 24px;
  border: 1px solid #e8ecf0;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  border-color: #00A8A8;
  box-shadow: 0 4px 20px rgba(0,168,168,0.08);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 17px;
  color: #0D2240;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.why-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs {
  background: #0D2240;
  padding: 64px 0;
  text-align: center;
}

.certs-inner .section-eyebrow { color: #00A8A8; }

.certs-sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin: 0 auto 40px;
  max-width: 560px;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.cert-logos img:hover { opacity: 1; }

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry {
  padding: 96px 0;
  background: #F5F6F8;
}

.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.inquiry-left .section-title { margin-bottom: 16px; }
.inquiry-left > p {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.contact-row div {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
}
.contact-row a { color: #1B5299; font-weight: 500; }
.contact-row a:hover { color: #00A8A8; }

/* Form */
.inquiry-form {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.form-row { margin-bottom: 20px; }
.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.req { color: #e53e3e; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a2332;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00A8A8;
  box-shadow: 0 0 0 3px rgba(0,168,168,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.form-success {
  background: #fff;
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: center;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: #00A8A8;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 24px; color: #0D2240; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: #6B7280; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D2240;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 38px; margin-bottom: 16px; }

.footer-col-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00A8A8;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-col p, .footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  transition: color 0.15s;
}
.footer-col ul li a:hover, .footer-col a:hover { color: #00A8A8; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: #00A8A8; }
.footer-disclaimer { margin-top: 4px; font-size: 11.5px; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #00A8A8;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,168,168,0.35);
  z-index: 50;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: #008a8a;
  box-shadow: 0 6px 28px rgba(0,168,168,0.45);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-tel { display: none; }
  .nav-toggle { display: block; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .inquiry-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inquiry-form { padding: 28px 20px; }
  .form-row-half { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .floating-cta { bottom: 20px; right: 20px; font-size: 13px; padding: 12px 20px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 64px; }
  .hero-title { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .products, .why-order, .inquiry { padding: 64px 0; }
  .cert-logos { gap: 28px; }
  .cert-logos img { height: 44px; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-cta { transition: none; }
}
 .hero-inner {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: center;
      padding-bottom: 80px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    /* ---- Hero Form Panel ---- */
    .hero-form-panel {
      position: relative;
      z-index: 2;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 8px;
      padding: 28px 28px 24px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .hero-form-panel h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
      letter-spacing: 0.03em;
    }

    .hero-form-panel > p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.55;
      margin-bottom: 20px;
    }

    .hero-form-panel form ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero-form-panel form ul li label {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .hero-form-panel form ul li label span {
      font-size: 11.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .hero-form-panel form ul li input[type="text"],
    .hero-form-panel form ul li textarea {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 4px;
      padding: 9px 12px;
      font-size: 13.5px;
      font-family: 'Inter', sans-serif;
      color: #ffffff;
      width: 100%;
      transition: border-color 0.15s, background 0.15s;
      outline: none;
    }

    .hero-form-panel form ul li input[type="text"]::placeholder,
    .hero-form-panel form ul li textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .hero-form-panel form ul li input[type="text"]:focus,
    .hero-form-panel form ul li textarea:focus {
      border-color: #00A8A8;
      background: rgba(0, 168, 168, 0.08);
      box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.15);
    }

    .hero-form-panel form ul li textarea {
      resize: vertical;
      min-height: 80px;
    }

    .hero-form-panel form ul li input.wukaka {
      background: #00A8A8;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      padding: 12px;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.08em;
      cursor: pointer;
      width: 100%;
      transition: background 0.2s, transform 0.1s;
    }

    .hero-form-panel form ul li input.wukaka:hover {
      background: #008a8a;
      transform: translateY(-1px);
    }

    .hero-form-panel form ul li input.wukaka:active {
      transform: translateY(0);
    }

    /* Responsive: stack on smaller screens */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr 340px;
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 48px;
      }

      .hero-form-panel {
        padding: 24px 20px;
      }
    }
    /* ============================================================
   COMPANY INTRO SECTION
   Paste inside <style> in <head> or append to new-main.css
   ============================================================ */

.company-intro {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Background photo + overlay */
.company-intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.company-intro-bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 34, 64, 0.28) 0%,
    rgba(27, 82, 153, 0.30) 50%,
    rgba(13, 34, 64, 0.25) 100%
  );
}

/* Inner layout */
.company-intro-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Left: Stats grid ---- */
.ci-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.ci-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.ci-stat:hover {
  background: rgba(0, 168, 168, 0.08);
}

/* Remove right border from 2nd and 4th (right column) */
.ci-stat:nth-child(2),
.ci-stat:nth-child(4) {
  border-right: none;
}

/* Remove bottom border from last two (bottom row) */
.ci-stat:nth-child(3),
.ci-stat:nth-child(4) {
  border-bottom: none;
}

.ci-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.ci-stat-num sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

.ci-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

/* ---- Right: Content ---- */
.ci-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00A8A8;
  margin-bottom: 14px;
}

.ci-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 480px;
}

.ci-text {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: bold;
}

.ci-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #00A8A8;
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.ci-btn:hover {
  background: #00A8A8;
  color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .company-intro-inner {
    gap: 48px;
  }

  .ci-stat {
    padding: 28px 20px;
  }

  .ci-stat-num {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .company-intro {
    padding: 72px 0;
  }

  .company-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ci-stats {
    max-width: 480px;
  }

  .ci-title {
    max-width: 100%;
  }

  .ci-text {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ci-stat {
    padding: 24px 16px;
  }

  .ci-stat-num {
    font-size: 36px;
  }
}
/* ============================================================
   CERTIFICATIONS SECTION — 覆盖原有 cert-logos 样式
   将此内容追加到 new-main.css 末尾（或替换原来的 .cert-logos 块）
   ============================================================ */

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-logos img {
  /* 移除原来的白化滤镜，改用白色卡片托底展示原色 logo */
  filter: none;
  opacity: 1;

  display: block;
  height: 110px;
  width: 110px;
  object-fit: contain;

  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);

  transition: transform 0.2s, box-shadow 0.2s;
}

.cert-logos img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* 适当增加整个 certs 区域的上下内边距，让证书更突出 */
.certs {
  padding: 80px 0;
}

@media (max-width: 480px) {
  .cert-logos img {
    height: 88px;
    width: 88px;
    padding: 12px;
  }
}
/* ============================================================
   PARTNERS SECTION
   追加到 new-main.css 末尾
   ============================================================ */

.partners {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
}

.partners .section-title {
  margin-bottom: 12px;
}

.partners .section-sub {
  margin-bottom: 48px;
}

/* 滚动容器：超出隐藏，两侧渐隐 */
.partners-track-wrap {
  position: relative;
  overflow: hidden;
}

/* 两侧渐隐遮罩 */
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* Logo 行：五张均匀排列，居中 */
.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* 单个 logo 卡片 */
.partner-logo {
  flex: 0 0 20%;           /* 五等分 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  border-right: 1px solid #e8ecf0;
}

.partner-logo:last-child {
  border-right: none;
}

.partner-logo img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  /* 默认灰化，hover 还原彩色 */
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .partners-track {
    flex-wrap: wrap;
  }

  .partner-logo {
    flex: 0 0 33.333%;
    border-right: 1px solid #e8ecf0;
    border-bottom: 1px solid #e8ecf0;
  }

  /* 第3个右边框去掉 */
  .partner-logo:nth-child(3) {
    border-right: none;
  }

  /* 最后一行底部边框去掉 */
  .partner-logo:nth-child(4),
  .partner-logo:nth-child(5) {
    border-bottom: none;
  }

  /* 第4、5个（第二行）右边框处理 */
  .partner-logo:nth-child(5) {
    border-right: none;
  }

  /* 两侧渐隐在移动端关闭 */
  .partners-track-wrap::before,
  .partners-track-wrap::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    flex: 0 0 50%;
    padding: 20px 16px;
  }

  .partner-logo:nth-child(3) {
    border-right: 1px solid #e8ecf0;
  }

  .partner-logo:nth-child(2n) {
    border-right: none;
  }

  .partner-logo:nth-child(4),
  .partner-logo:nth-child(5) {
    border-bottom: none;
  }
}

/* ============================================================
   FAQ + INQUIRY SECTION  — 追加到 new-main.css 末尾
   替换原有 .inquiry 相关样式（或直接追加，后面的规则会覆盖）
   ============================================================ */

/* ---- Outer section ---- */
.faq-inquiry {
  padding: 96px 0;
  background: #F5F6F8;
}

.faq-inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

/* ============================================================
   LEFT: FAQ
   ============================================================ */
.faq-left .section-eyebrow { margin-bottom: 10px; }
.faq-left .section-title   { margin-bottom: 12px; }

.faq-intro {
  font-size: 14.5px;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* FAQ accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e0e4ea;
}

.faq-item {
  border-bottom: 1px solid #e0e4ea;
}

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #0D2240;
  cursor: pointer;
  line-height: 1.45;
  transition: color 0.15s;
}

.faq-q:hover { color: #00A8A8; }

.faq-q[aria-expanded="true"] { color: #00A8A8; }

/* +/- icon */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1;
  transition: border-color 0.15s, color 0.15s, transform 0.2s;
}

.faq-q[aria-expanded="true"] .faq-icon {
  border-color: #00A8A8;
  color: #00A8A8;
  transform: rotate(45deg);
}

/* Answer panel */
.faq-a {
  display: none;
  padding: 0 32px 18px 0;
}

.faq-a.open { display: block; }

.faq-a p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.75;
}

/* ============================================================
   RIGHT: Form panel
   ============================================================ */
.faq-form-panel {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 88px; /* 吸附在 sticky header 下方 */
}

.faq-form-panel .section-eyebrow { margin-bottom: 8px; }

.faq-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0D2240;
  line-height: 1.2;
  margin-bottom: 6px;
}

.faq-form-sub {
  font-size: 13.5px;
  color: #6B7280;
  margin-bottom: 28px;
}

/* grid-box / column layout from original form code */
.grid-box.two {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.grid-box.two .column  { grid-column: span 1; }
.grid-box.two .wid-100 { grid-column: span 2; }
.grid-box.two .txt-center { text-align: center; }

.grid-box label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.grid-box label span {
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.02em;
}

.grid-box input[type="text"],
.grid-box textarea {
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: #1a2332;
  background: #fff;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.grid-box input[type="text"]:focus,
.grid-box textarea:focus {
  border-color: #00A8A8;
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.12);
}

.grid-box textarea {
  resize: vertical;
  min-height: 110px;
}

/* Submit button */
.grid-box input.wukaka {
  display: inline-block;
  background: #00A8A8;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 13px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
}

.grid-box input.wukaka:hover  { background: #008a8a; }
.grid-box input.wukaka:active { transform: scale(0.99); }

/* Bottom contact line */
.faq-form-contact {
  margin-top: 20px;
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.faq-form-contact a {
  color: #1B5299;
  font-weight: 500;
  transition: color 0.15s;
}
.faq-form-contact a:hover { color: #00A8A8; }
.faq-contact-divider { color: #d1d5db; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .faq-inquiry-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .faq-inquiry {
    padding: 64px 0;
  }

  .faq-inquiry-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-form-panel {
    padding: 28px 20px;
    position: static; /* 移动端取消 sticky */
  }

  .grid-box.two {
    grid-template-columns: 1fr;
  }

  .grid-box.two .column,
  .grid-box.two .wid-100 {
    grid-column: span 1;
  }
}

#Pop_UpsBtn {
    background: url(/yudamachinery/2024/04/02/youxaing1.png) no-repeat center #019e97 !important;
    right: 20px !important;
    bottom: 20px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 997 !important;;
}
#pups_from ul li,
#pups_from ul li::before,
#pups_from ul li::marker {
    list-style: none !important;
    display: block !important;
}

#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 44px;
    height: 44px;
    background: #00998f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    box-shadow: 0 4px 16px rgba(0,153,143,0.4);
}
#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#back-to-top:hover {
    background: #007a72;
}
@media (max-width: 640px) {
    #back-to-top { right: 16px; bottom: 90px; }
}