 /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #1a1a2e;
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }

    /* ============================================================
       CSS VARIABLES
    ============================================================ */
    :root {
      --primary: #1b6ca8;       /* main blue */
      --primary-dark: #154f7d;
      --primary-light: #e8f4fd;
      --accent: #27ae60;        /* eco green */
      --accent-dark: #1e8449;
      --accent-light: #eafaf1;
      --orange: #e67e22;        /* CTA orange */
      --orange-hover: #ca6f1e;
      --dark: #1a1a2e;
      --dark2: #2c2c54;
      --gray: #6b7280;
      --gray-light: #f4f6f8;
      --gray-border: #e5e7eb;
      --white: #ffffff;
      --section-padding: 80px 0;
      --container: 1200px;
      --radius: 10px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-hover: 0 8px 32px rgba(0,0,0,0.15);
    }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-block;
      background: var(--accent-light);
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 17px;
      color: var(--gray);
      max-width: 640px;
      margin-bottom: 48px;
    }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin-left: auto; margin-right: auto; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 20px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s ease;
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }
    .btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,0.35); }
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }
    .btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
    .btn-white {
      background: var(--white);
      color: var(--primary);
      border-color: var(--white);
    }
    .btn-white:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,0.35); }
    .btn-lg { padding: 16px 36px; font-size: 16px; }
    .btn-sm { padding: 10px 20px; font-size: 14px; }

    /* ============================================================
       ANNOUNCEMENT BAR
    ============================================================ */
    .announcement-bar {
      background: var(--primary);
      color: var(--white);
      text-align: center;
      padding: 10px 24px;
      font-size: 14px;
    }
    .announcement-bar a { color: #7ec8f5; font-weight: 600; }
    .announcement-bar a:hover { text-decoration: underline; }

    /* ============================================================
       HEADER / NAVIGATION
    ============================================================ */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 16px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      flex-shrink: 0;
    }
    .nav-logo .logo-icon {
      width: 40px; height: 40px;
      background: var(--primary);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 18px; font-weight: 900;
    }
    .nav-logo span.eco { color: var(--accent); }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: center;
    }
    .nav-item { position: relative; }
    .nav-link {
      display: flex;
      align-items: center;
      gap: 3px;
      padding: 6px 17px;
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      border-radius: 6px;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
    .nav-link .chevron { font-size: 10px; transition: transform 0.2s; }
    .nav-item:hover .chevron { transform: rotate(180deg); }

    /* Dropdown */
    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: 0 12px 48px rgba(0,0,0,0.14);
      min-width: 640px;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      border: 1px solid var(--gray-border);
    }
    .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .dropdown-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 24px;
    }
    .dropdown-category {
      margin-bottom: 16px;
    }
    .dropdown-category-title {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: var(--gray-light);
      border-radius: 8px;
      margin-bottom: 4px;
      cursor: default;
    }
    .dropdown-category-title .di-icon {
      width: 36px; height: 36px;
      background: var(--white);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .dropdown-category-title strong {
      font-size: 14px;
      color: var(--dark);
      display: block;
      line-height: 1.3;
    }
    .dropdown-category-title .cat-desc {
      font-size: 11px;
      color: var(--gray);
      display: block;
      line-height: 1.4;
      margin-top: 1px;
    }
    .dropdown-sub-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px 8px 20px;
      font-size: 13px;
      color: #555;
      border-radius: 6px;
      transition: all 0.15s;
      text-decoration: none;
    }
    .dropdown-sub-item:hover { background: var(--primary-light); color: var(--primary); }
    .dropdown-sub-item .sub-icon {
      width: 26px; height: 26px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; flex-shrink: 0;
    }
    .dropdown-sub-item span.sub-label {
      font-size: 12px; color: var(--gray); display: block;
    }
    /* Single-column dropdown */
    .dropdown-single {
      min-width: 280px;
      padding: 12px;
    }
    .dropdown-simple-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      text-decoration: none;
      color: var(--dark);
      transition: all 0.15s;
    }
    .dropdown-simple-item:hover { background: var(--primary-light); color: var(--primary); }
    .dropdown-simple-item .di-icon {
      width: 36px; height: 36px;
      background: var(--white);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .dropdown-simple-item strong { font-size: 14px; display: block; line-height: 1.3; }
    .dropdown-simple-item .cat-desc { font-size: 11px; color: var(--gray); display: block; line-height: 1.4; margin-top: 1px; }
    /* Accordion inside dropdown */
    .dropdown-accordion {
      margin-bottom: 4px;
    }
    .dropdown-accordion-title {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: var(--gray-light);
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.15s;
      user-select: none;
    }
    .dropdown-accordion-title:hover { background: #e8ecf1; }
    .dropdown-accordion-title .di-icon {
      width: 36px; height: 36px;
      background: var(--white);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .dropdown-accordion-title strong { font-size: 14px; color: var(--dark); display: block; line-height: 1.3; }
    .dropdown-accordion-title strong a { color: var(--dark); text-decoration: none; }
    .dropdown-accordion-title strong a:hover { color: var(--primary); }
    .dropdown-accordion-title .cat-desc { font-size: 11px; color: var(--gray); display: block; line-height: 1.4; margin-top: 1px; }
    .accordion-arrow {
      margin-left: auto;
      font-size: 10px;
      color: var(--gray);
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .dropdown-accordion.open .accordion-arrow { transform: rotate(180deg); }
    .dropdown-accordion-body {
      display: none;
      padding: 4px 0 4px 12px;
    }
    .dropdown-accordion.open .dropdown-accordion-body { display: block; }
    .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

    /* Mobile menu toggle */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
    .hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hero {
      position: relative;
      overflow: hidden;
      height: 600px;
      display: flex; align-items: center;
    }
    /* Fullscreen image background carousel */
    .hero-bg-carousel {
      position: absolute; inset: 0; z-index: 0;
    }
    /* White base on left half, gradient to transparent at center */
    .hero::after {
      content: '';
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
      background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,0.85) 48%, transparent 55%);
      pointer-events: none;
    }
    .hero-bg-track {
      display: flex; width: 100%; height: 100%;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-bg-slide {
      min-width: 100%; height: 100%; flex-shrink: 0;
    }
    .hero-bg-slide img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }
    .hero-inner {
      display: flex; align-items: center; gap: 40px;
      position: relative; z-index: 2;
      height: 100%;
    }
    .hero-content {
      flex: 1;
      position: relative; z-index: 2;
      margin-left: -563px;
      mask-image: linear-gradient(to right, rgba(0,0,0,1) 55%, rgba(0,0,0,0.15));
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 55%, rgba(0,0,0,0.95));
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.12);
      color: #1b6ca8;
      font-size: 13px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 800;
      color: #1a1a2e;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .hero h1 .highlight { color: #1b6ca8; }
    .hero-desc {
      font-size: 15px;
      color: #4a4a5a;
      margin-bottom: 24px;
      max-width: 500px;
      line-height: 1.6;
    }
    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
      max-width: 520px;
    }
    .hero-features-row-break {
      width: 100%;
      height: 0;
    }
    .hero-feature {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.1);
      color: #3a3a4a;
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 6px;
    }
    .hero-feature .check { color: #1b6ca8; font-weight: 700; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    /* Hero carousel arrow & dots - positioned over bg images */
    .hero-carousel-arrow {
      position: absolute;
      right: 24px;
      bottom: 24px;
      width: 48px; height: 48px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      color: #fff;
      font-size: 22px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      z-index: 5;
      transition: all 0.25s ease;
    }
    .hero-carousel-arrow:hover {
      background: rgba(255,255,255,0.35);
      transform: scale(1.08);
    }
    .hero-carousel-dots {
      position: absolute;
      right: 20px;
      bottom: 84px;
      display: flex;
      gap: 8px;
      z-index: 5;
    }
    .hero-carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .hero-carousel-dot.active { background: #fff; width: 24px; border-radius: 4px; }

    /* ============================================================
       TRUST STRIP (Brand Logos Marquee)
    ============================================================ */
    .trust-strip {
      background: var(--gray-light);
      border-bottom: 1px solid var(--gray-border);
      padding: 20px 0;
      overflow: hidden;
    }
    .trust-strip-label {
      text-align: center;
      font-size: 13px;
      color: var(--gray);
      font-weight: 500;
      margin-bottom: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .marquee-wrap { overflow: hidden; position: relative; }
    .marquee-track {
      display: flex;
      gap: 36px;
      align-items: center;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      background: var(--white);
      border-radius: 8px;
      border: 1px solid var(--gray-border);
      height: 70px;
      min-width: 130px;
      flex-shrink: 0;
    }
    .marquee-item img {
      max-height: 50px;
      max-width: 115px;
      object-fit: contain;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ============================================================
       ADVANTAGES SECTION
    ============================================================ */
    .advantages { padding: var(--section-padding); }
    .adv-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .adv-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .adv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--primary);
    }
    .adv-card:nth-child(2)::before { background: var(--accent); }
    .adv-card:nth-child(3)::before { background: var(--orange); }
    .adv-card:nth-child(4)::before { background: #9b59b6; }
    .adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .adv-icon {
      width: 68px; height: 68px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      margin: 0 auto 20px;
    }
    .adv-card:nth-child(1) .adv-icon { background: var(--primary-light); }
    .adv-card:nth-child(2) .adv-icon { background: var(--accent-light); }
    .adv-card:nth-child(3) .adv-icon { background: #fef5ec; }
    .adv-card:nth-child(4) .adv-icon { background: #f5eef8; }
    .adv-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .adv-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
    .adv-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 10px;
      border-radius: 4px;
    }
    .adv-card:nth-child(2) .adv-tag { color: var(--accent-dark); background: var(--accent-light); }

    /* ============================================================
       PRODUCTS SECTION
    ============================================================ */
    .products { padding: var(--section-padding); background: var(--gray-light); }
    .products-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
      margin-bottom: 40px;
      justify-content: center;
    }
    .tab-btn {
      padding: 10px 20px;
      border: 2px solid var(--gray-border);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      color: var(--gray);
      background: var(--white);
      cursor: pointer;
      transition: all 0.2s;
    }
    .tab-btn:hover, .tab-btn.active {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }
    .tab-btn[data-cat] {
      border-color: var(--btn-border, var(--gray-border));
      color: var(--btn-color, var(--gray));
      background: var(--btn-bg, var(--white));
    }
    .tab-btn[data-cat].active,
    .tab-btn[data-cat]:hover {
      filter: brightness(0.92);
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    /* Subcategory Panel */
    .subcat-panel {
      width: 100%;
      max-width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, margin-bottom 0.35s ease;
      margin-bottom: 0;
    }
    .subcat-panel.show {
      max-height: 300px;
      margin-bottom: 32px;
    }
    .subcat-panel-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 20px 24px;
    }
    .subcat-tag {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid var(--gray-border);
      color: var(--gray);
      background: #f8f9fa;
      transition: all 0.2s;
      cursor: pointer;
    }
    .subcat-tag:hover,
    .subcat-tag.active {
      border-color: var(--primary);
      color: var(--white);
      background: var(--primary);
    }
    .subcat-tag.all-subcat {
      border-color: #ddd;
      color: #555;
      background: #fff;
    }
    .subcat-tag.all-subcat:hover,
    .subcat-tag.all-subcat.active {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-border);
      transition: all 0.3s;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .product-card-img {
      aspect-ratio: 1 / 1;
      display: flex; align-items: center; justify-content: center;
      font-size: 72px;
      position: relative;
      overflow: hidden;
    }
    .product-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .product-card-img.eco { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .product-card-img.sports { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
    .product-card-img.general { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
    .product-card-img.mold { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
    .product-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--accent);
      color: var(--white);
      font-size: 11px; font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .product-badge.blue { background: var(--primary); }
    .product-badge.purple { background: #9b59b6; }
    .product-card-body { padding: 20px; }
    .product-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .product-card-body p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
    .product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .product-tag {
      font-size: 11px; font-weight: 600;
      padding: 3px 8px;
      border-radius: 4px;
      background: var(--accent-light);
      color: var(--accent-dark);
    }
    .product-tag.blue { background: var(--primary-light); color: var(--primary-dark); }
    .product-tag.mold-tag { background: #f5eef8; color: #7d3c98; }
    .product-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 600;
      color: var(--primary);
    }
    .product-link:hover { color: var(--primary-dark); gap: 10px; }

    /* Category "More" link */
    .cat-more-row {
      grid-column: 1 / -1;
      text-align: center;
      padding: 4px 0 8px;
      display: none;
    }
    .cat-more-row.visible { display: block; }
    .cat-more-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 600;
      color: var(--primary);
      cursor: pointer;
      padding: 8px 20px;
      border: 2px solid var(--primary);
      border-radius: 6px;
      background: transparent;
      transition: all 0.2s;
    }
    .cat-more-btn:hover {
      background: var(--primary);
      color: var(--white);
    }
    .cat-more-btn .arrow { transition: transform 0.2s; }
    .cat-more-btn.expanded .arrow { transform: rotate(180deg); }
    .product-card.cat-hidden { display: none; }

    /* ============================================================
       PROCESS SECTION
    ============================================================ */
    .process { padding: var(--section-padding); }
    .process-inner { display: flex; gap: 80px; align-items: center; }
    .process-left { flex: 1; }
    .process-right { flex: 1; }
    .steps { display: flex; flex-direction: column; gap: 0; }
    .step-item {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-left: 2px solid var(--gray-border);
      padding-left: 28px;
      margin-left: 20px;
      position: relative;
      transition: all 0.3s;
    }
    .step-item:last-child { border-left: 2px solid transparent; }
    .step-item.active { border-left-color: var(--primary); }
    .step-num {
      position: absolute;
      left: -21px; top: 20px;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--gray-border);
      color: var(--gray);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800;
      transition: all 0.3s;
      flex-shrink: 0;
    }
    .step-item.active .step-num { background: var(--primary); color: var(--white); }
    .step-content h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .step-content p { font-size: 13px; color: var(--gray); line-height: 1.65; }
    .process-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .process-photo {
      border-radius: 10px;
      overflow: hidden;
      background: var(--gray-light);
      height: 180px;
      display: flex; align-items: center; justify-content: center;
      font-size: 56px;
      border: 2px solid var(--gray-border);
    }
    .process-photo img {
      width: 100%; height: 100%; object-fit: cover;
    }

    /* ============================================================
       FACTORY STATS
    ============================================================ */
    .factory-stats {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      padding: 64px 0;
      position: relative;
      overflow: hidden;
    }
    .factory-stats::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      z-index: 1;
    }
    .stat-item {
      text-align: center;
      padding: 24px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 800;
      color: #5de8a0;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
      font-weight: 500;
    }

    /* ============================================================
       CUSTOM SOLUTIONS
    ============================================================ */
    .custom { padding: var(--section-padding); background: var(--gray-light); }
    .custom-inner { display: flex; gap: 72px; align-items: center; }
    .custom-left { flex: 1; }
    .custom-right { flex: 1; }
    .custom-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
    .custom-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 10px;
      padding: 18px;
      transition: all 0.3s;
    }
    .custom-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(27,108,168,0.1); }
    .custom-item-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--primary-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .custom-item-body h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .custom-item-body p { font-size: 13px; color: var(--gray); }
    .moq-card {
      background: linear-gradient(135deg, var(--accent), #1a7a46);
      border-radius: 16px;
      padding: 36px;
      color: var(--white);
      text-align: center;
    }
    .moq-card .moq-icon { font-size: 48px; margin-bottom: 16px; }
    .moq-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
    .moq-card p { font-size: 15px; opacity: 0.9; margin-bottom: 24px; }
    .moq-features { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 28px; }
    .moq-feature {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px;
    }
    .moq-feature .check { color: #5de8a0; font-weight: 700; font-size: 16px; }

    /* ============================================================
       FACTORY SHOWCASE
    ============================================================ */
    .factory-showcase { padding: var(--section-padding); }
    .factory-photos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
      margin-bottom: 48px;
    }
    .factory-photo {
      border-radius: 12px;
      overflow: hidden;
      background: var(--gray-light);
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--gray-border);
      position: relative;
    }
    .factory-photo.large {
      grid-column: span 2;
      grid-row: span 2;
      height: 400px;
    }
    .factory-photo.small { height: 190px; }
    .factory-photo img { width: 100%; height: 100%; object-fit: cover; }
    .factory-photo-placeholder {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; color: var(--gray); font-size: 13px;
      height: 100%; width: 100%;
    }
    .factory-photo-placeholder .ph-icon { font-size: 48px; }
    .factory-certs {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--white);
      border: 2px solid var(--gray-border);
      border-radius: 10px;
      padding: 16px 24px;
      transition: all 0.3s;
    }
    .cert-badge:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(39,174,96,0.12); }
    .cert-badge .cert-icon { font-size: 28px; }
    .cert-badge h4 { font-size: 14px; font-weight: 700; color: var(--dark); }
    .cert-badge p { font-size: 12px; color: var(--gray); }

    /* ============================================================
       CASES SECTION
    ============================================================ */
    .cases { padding: var(--section-padding); background: var(--gray-light); }
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-border);
      transition: all 0.3s;
    }
    .case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .case-card:first-child {
      grid-column: span 2;
    }
    .case-img {
      height: 216px;
      display: flex; align-items: center; justify-content: center;
      font-size: 64px;
      overflow: hidden;
    }
    .case-card:first-child .case-img { height: 216px; }
    .case-img img {
      width: 100%;
      height: 216px;
      object-fit: cover;
      display: block;
    }
    .case-img.green { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
    .case-img.blue { background: linear-gradient(135deg, #e3f2fd, #90caf9); }
    .case-img.orange { background: linear-gradient(135deg, #fff8e1, #ffcc80); }
    .case-img.purple { background: linear-gradient(135deg, #f3e5f5, #ce93d8); }
    .case-body { padding: 20px; }
    .case-cat {
      font-size: 11px; font-weight: 700;
      color: var(--accent-dark);
      background: var(--accent-light);
      padding: 3px 8px; border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      display: inline-block;
    }
    .case-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
    .case-body p { font-size: 13px; color: var(--gray); line-height: 1.65; }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonials { padding: var(--section-padding); background: var(--gray-light); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 28px;
      transition: all 0.3s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .testi-stars { color: #f39c12; font-size: 16px; margin-bottom: 14px; }
    .testi-text { font-size: 14px; color: #444; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
    .testi-text::before { content: '"'; font-size: 40px; color: var(--accent); line-height: 0; vertical-align: -12px; margin-right: 4px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      font-weight: 700; color: var(--white);
    }
    .testi-author h5 { font-size: 14px; font-weight: 700; color: var(--dark); }
    .testi-author span { font-size: 12px; color: var(--gray); }

    /* ============================================================
       FAQ SECTION
    ============================================================ */
    .faq { padding: var(--section-padding); background: var(--gray-light); }
    .faq-inner { display: flex; gap: 72px; }
    .faq-left { flex: 1; }
    .faq-right { flex: 1; }
    .faq-list { display: flex; flex-direction: column; gap: 14px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .faq-item:hover { border-color: var(--primary); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px;
      font-size: 15px; font-weight: 600; color: var(--dark);
      cursor: pointer;
      gap: 12px;
    }
    .faq-q .q-icon { font-size: 14px; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
    .faq-item.open .q-icon { transform: rotate(180deg); }
    .faq-a {
      padding: 0 20px 18px;
      font-size: 14px; color: var(--gray);
      line-height: 1.75;
      display: none;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-cta {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      border-radius: 16px;
      padding: 36px;
      color: var(--white);
      text-align: center;
    }
    .faq-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
    .faq-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 28px; }
    .contact-options { display: flex; flex-direction: column; gap: 12px; }
    .contact-option {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--white);
      font-size: 14px;
      text-align: left;
      transition: background 0.2s;
    }
    .contact-option:hover { background: rgba(255,255,255,0.2); }
    .contact-option .co-icon { font-size: 20px; }

    /* ============================================================
       CTA BANNER
    ============================================================ */
    .cta-banner {
      background: linear-gradient(135deg, #0d2b4e 0%, #1b6ca8 60%, #0d7c3d 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    }
    .cta-banner-inner { position: relative; z-index: 1; }
    .cta-banner h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
    .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-formats { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
    .cta-format {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; color: rgba(255,255,255,0.6);
    }
    .cta-format::before { content: '\2713 '; color: #5de8a0; font-weight: 700; }

    /* ============================================================
       BLOG SECTION
    ============================================================ */
    .blog { padding: var(--section-padding); }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .blog-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s;
    }
    .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .blog-img {
      height: 216px;
      display: flex; align-items: center; justify-content: center;
      font-size: 52px;
      overflow: hidden;
    }
    .blog-img a {
      display: block;
      width: 100%;
      height: 100%;
    }
    .blog-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .blog-img.img1 { background: linear-gradient(135deg, #e0f7fa, #80deea); }
    .blog-img.img2 { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
    .blog-img.img3 { background: linear-gradient(135deg, #fff3e0, #ffcc80); }
    .blog-body { padding: 20px; }
    .blog-cat {
      font-size: 11px; font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .blog-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
    .blog-body p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
    .blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #aaa; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: #0d1b2e;
      color: rgba(255,255,255,0.75);
    }
    .footer-top {
      padding: 72px 0 48px;
      display: grid;
      grid-template-columns: 1.5fr 2fr 1fr 1fr;
      gap: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-col-products ul {
      columns: 2;
      column-gap: 24px;
    }
    .footer-col-products ul li {
      break-inside: avoid;
    }
    .footer-brand .footer-logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 20px; font-weight: 800; color: var(--white);
      margin-bottom: 20px;
    }
    .footer-brand .footer-logo .logo-icon {
      width: 36px; height: 36px;
      background: var(--primary);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--white); font-weight: 900;
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
    .footer-address { margin-bottom: 20px; }
    .footer-address h5 {
      font-size: 12px; font-weight: 700; color: #7ec8f5;
      text-transform: uppercase; letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .footer-address p { font-size: 13px; line-height: 1.6; }
    .footer-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .footer-contact a { font-size: 13px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
    .footer-contact a:hover { color: var(--white); }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: all 0.2s;
    }
    .social-link:hover { background: var(--primary); border-color: var(--primary); }
    .footer-col h4 {
      font-size: 14px; font-weight: 700; color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col li a {
      font-size: 14px; color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .footer-col li a:hover { color: var(--white); }
    .footer-bottom {
      padding: 20px 0;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
    .footer-badges { display: flex; gap: 12px; align-items: center; }
    .footer-badge {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
    }

    /* ============================================================
       STICKY QUOTE BUTTON
    ============================================================ */
    .sticky-quote {
      position: fixed;
      right: 24px; bottom: 32px;
      z-index: 999;
      display: flex; flex-direction: column; gap: 10px;
    }
    .sticky-btn {
      display: flex; align-items: center; justify-content: center;
      width: 52px; height: 52px;
      border-radius: 50%;
      font-size: 22px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: all 0.25s;
      cursor: pointer;
      border: none;
    }
    .sticky-btn:hover { transform: scale(1.1); }
    .sticky-btn.whatsapp { background: #25d366; }
    .sticky-btn.email { background: var(--primary); }
    .sticky-btn.quote { background: var(--orange); color: var(--white); width: auto; border-radius: 28px; padding: 0 20px; font-size: 14px; font-weight: 700; gap: 8px; }
    .sticky-btn.quote span { display: none; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    /* Contact section grid */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    @media (max-width: 1100px) {
      .adv-grid { grid-template-columns: repeat(2, 1fr); }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .contact-grid { gap: 40px; }
    }
    @media (max-width: 900px) {
      :root { --section-padding: 56px 0; }
      .hero { height: auto; min-height: 600px; }
      .hero::after { background: rgba(255,255,255,0.6); }
      .hero-content { margin-left: 0; mask-image: none; -webkit-mask-image: none; }
      .hero-inner { flex-direction: column; gap: 0; }
      .process-inner { flex-direction: column; }
      .custom-inner { flex-direction: column; }
      .faq-inner { flex-direction: column; }
      .cases-grid { grid-template-columns: 1fr; }
      .case-card:first-child { grid-column: span 1; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .nav-menu, .nav-actions .btn { display: none; }
      .hamburger { display: flex; }
      .dropdown { min-width: 300px; }
      .dropdown-grid { grid-template-columns: 1fr; }
      .adv-grid { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .factory-photos-grid { grid-template-columns: 1fr; }
      .factory-photo.large { grid-column: auto; grid-row: auto; height: 220px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .factory-certs { flex-direction: column; }
      .contact-grid { gap: 28px; }
    }
    @media (max-width: 480px) {
      .hero { height: auto; min-height: 480px; padding: 40px 0; }
      .hero-content { margin-left: 0; }
      .hero h1 { font-size: 24px; }
      .hero-actions { flex-direction: column; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .sticky-btn.quote span { display: inline; }
    }

    /* ============================================================
       PAGE HERO / TITLE BANNER (shared across inner pages)
    ============================================================ */
    .page-hero {
      background: linear-gradient(135deg, #0d2b4e 0%, #1b4f85 40%, #0d7c3d 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 0 60px;
      text-align: center;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .page-hero h1 {
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .page-hero h1 .highlight { color: #5de8a0; }
    .page-hero p {
      font-size: 18px;
      color: rgba(255,255,255,0.8);
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .page-hero .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      position: relative;
      z-index: 1;
    }
    .page-hero .breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
    .page-hero .breadcrumb a:hover { color: #fff; text-decoration: underline; }

    /* ============================================================
       BREADCRUMB NAV (standalone, shared across inner pages)
    ============================================================ */
    .breadcrumb-nav {
      padding: 16px 0;
      background: var(--gray-light);
      border-bottom: 1px solid var(--gray-border);
    }
    .breadcrumb-nav .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--gray);
    }
    .breadcrumb-nav .breadcrumb a { color: var(--dark); text-decoration: none; }
    .breadcrumb-nav .breadcrumb a:hover { color: var(--primary); }
    .breadcrumb-nav .breadcrumb .sep { color: var(--gray); }
    .breadcrumb-nav .breadcrumb .current { color: var(--primary); font-weight: 500; }

    /* ============================================================
       SUB NAV (inner page section buttons, e.g. About Us / Factory / Certificate)
    ============================================================ */
    .sub-nav {
      padding: 24px 0;
      background: #fff;
    }
    .sub-nav .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .sub-nav a {
      display: inline-block;
      padding: 10px 28px;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray);
      text-decoration: none;
      border: 2px solid var(--gray-border);
      border-radius: 6px;
      transition: all 0.2s ease;
      white-space: nowrap;
      background: #fff;
    }
    .sub-nav a:hover {
      color: var(--primary);
      border-color: var(--primary);
    }
    .sub-nav a.active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      font-weight: 600;
    }

    /* ============================================================
       PRODUCTS SECTION (full width, for products listing page)
    ============================================================ */
    .products-section { padding: var(--section-padding); background: var(--gray-light); }

    /* ============================================================
       CATEGORY STATS BAR
    ============================================================ */
    .cat-stats {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      padding: 64px 0;
      position: relative;
      overflow: hidden;
    }
    .cat-stats::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cat-stats .stats-grid { position: relative; z-index: 1; }
    .cat-stats .stat-item { border-right: 1px solid rgba(255,255,255,0.15); }
    .cat-stats .stat-item:last-child { border-right: none; }
    .cat-stats .stat-num { color: #5de8a0; }

    /* ============================================================
       PRODUCT CTA SECTION
    ============================================================ */
    .product-cta-section { padding: var(--section-padding); background: var(--white); text-align: center; }
    .product-cta-card {
      background: linear-gradient(135deg, #0d2b4e 0%, #1b4f85 50%, #0d7c3d 100%);
      border-radius: 16px;
      padding: 60px 40px;
      position: relative;
      overflow: hidden;
    }
    .product-cta-card::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .product-cta-card h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }
    .product-cta-card p {
      font-size: 17px;
      color: rgba(255,255,255,0.8);
      max-width: 560px;
      margin: 0 auto 32px;
      position: relative;
    }
    .product-cta-card .btn-white:hover { background: transparent; color: var(--white); transform: none; box-shadow: none; border-color: var(--white); }
    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* ============================================================
       PAGINATION
    ============================================================ */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .pagination a, .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      background: var(--white);
      transition: all 0.2s;
    }
    .pagination a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
    .pagination .current {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    /* ============================================================
       RESPONSIVE ADDITIONS
    ============================================================ */
    @media (max-width: 900px) {
      .page-hero { padding: 60px 0 40px; }
    }
    @media (max-width: 768px) {
      .page-hero { padding: 60px 0 40px; }
      .product-cta-card { padding: 40px 24px; }
      .cta-actions { flex-direction: column; align-items: center; }
      .cat-stats .stat-item { padding: 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
      .cat-stats .stat-item:last-child { border-bottom: none; }
    }
    @media (max-width: 480px) {
      .page-hero h1 { font-size: 28px; }
      .sticky-btn.quote span { display: inline; }
    }

    /* ============================================================
       ADDITIONAL SHARED RULES (merged from all inner pages)
    ============================================================ */
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }
    .btn-secondary:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
    }
    .pagination .disabled { color: var(--gray); cursor: default; opacity: .5; }
    .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .nav-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--primary); flex-shrink: 0; }
    .nav-logo span.eco { color: var(--accent); }
    .nav-link .chevron { font-size: 10px; transition: transform .2s; }
    .nav-item:hover .chevron { transform: rotate(180deg); }
    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 12px 48px rgba(0,0,0,.14);
      min-width: 640px;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: all .2s;
      border: 1px solid var(--gray-border);
    }
    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
    .dropdown-category { margin-bottom: 16px; }
    .dropdown-category-title {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: var(--gray-light);
      border-radius: 8px;
      margin-bottom: 4px;
      cursor: default;
    }
    .dropdown-category-title .di-icon {
      width: 36px;
      height: 36px;
      background: var(--white);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
    }
    .dropdown-category-title strong { font-size: 14px; color: var(--dark); display: block; line-height: 1.3; }
    .dropdown-category-title .cat-desc { font-size: 11px; color: var(--gray); display: block; line-height: 1.4; margin-top: 1px; }
    .dropdown-sub-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px 8px 20px;
      font-size: 13px;
      color: #555;
      border-radius: 6px;
      transition: all .15s;
      text-decoration: none;
    }
    .dropdown-sub-item:hover { background: var(--primary-light); color: var(--primary); }
    .dropdown-sub-item .sub-icon {
      width: 26px;
      height: 26px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      flex-shrink: 0;
    }
    .dropdown-sub-item span.sub-label { font-size: 12px; color: var(--gray); display: block; }
    .dropdown-single { min-width: 280px; padding: 12px; }
    .dropdown-simple-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; text-decoration: none; color: var(--dark); transition: all .15s; }
    .dropdown-simple-item:hover { background: var(--primary-light); color: var(--primary); }
    .dropdown-simple-item .di-icon { width: 36px; height: 36px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
    .dropdown-simple-item strong { font-size: 14px; display: block; line-height: 1.3; }
    .dropdown-simple-item .cat-desc { font-size: 11px; color: var(--gray); display: block; line-height: 1.4; margin-top: 1px; }
    .dropdown-accordion { margin-bottom: 4px; }
    .dropdown-accordion-title { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--gray-light); border-radius: 8px; cursor: pointer; transition: background .15s; user-select: none; }
    .dropdown-accordion-title:hover { background: #e8ecf1; }
    .dropdown-accordion-title .di-icon { width: 36px; height: 36px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
    .dropdown-accordion-title strong { font-size: 14px; color: var(--dark); display: block; line-height: 1.3; }
    .dropdown-accordion-title strong a { color: var(--dark); text-decoration: none; }
    .dropdown-accordion-title strong a:hover { color: var(--primary); }
    .dropdown-accordion-title .cat-desc { font-size: 11px; color: var(--gray); display: block; line-height: 1.4; margin-top: 1px; }
    .accordion-arrow { margin-left: auto; font-size: 10px; color: var(--gray); transition: transform .2s; flex-shrink: 0; }
    .dropdown-accordion.open .accordion-arrow { transform: rotate(180deg); }
    .dropdown-accordion-body { display: none; padding: 4px 0 4px 12px; }
    .dropdown-accordion.open .dropdown-accordion-body { display: block; }
    .footer { background: #0d1b2e; color: rgba(255,255,255,.75); }
    .footer-top {
      padding: 72px 0 48px;
      display: grid;
      grid-template-columns: 1.5fr 2fr 1fr 1fr;
      gap: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-col-products ul {
      columns: 2;
      column-gap: 24px;
    }
    .footer-col-products ul li {
      break-inside: avoid;
    }
    .footer-brand .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
    .footer-address { margin-bottom: 20px; }
    .footer-address h5 {
      font-size: 12px;
      font-weight: 700;
      color: #7ec8f5;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .footer-address p { font-size: 13px; line-height: 1.6; }
    .footer-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .footer-contact a { font-size: 13px; color: rgba(255,255,255,.75); transition: color .2s; }
    .footer-contact a:hover { color: var(--white); }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all .2s;
    }
    .social-link:hover { background: var(--primary); border-color: var(--primary); }
    .footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
    .footer-col li a:hover { color: var(--white); }
    .footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
    .footer-badges { display: flex; gap: 12px; align-items: center; }
    .footer-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 12px;
      color: rgba(255,255,255,.6);
    }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
    .hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
    .sticky-quote {
      position: fixed;
      right: 24px;
      bottom: 32px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .sticky-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-size: 22px;
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
      transition: all .25s;
      cursor: pointer;
      border: none;
    }
    .sticky-btn:hover { transform: scale(1.1); }
    .sticky-btn.whatsapp { background: #25d366; }
    .sticky-btn.email { background: var(--primary); }
    .sticky-btn.quote {
      background: var(--orange);
      color: var(--white);
      width: auto;
      border-radius: 28px;
      padding: 0 20px;
      font-size: 14px;
      font-weight: 700;
      gap: 8px;
    }
    .product-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .product-card-body p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
    .product-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary); }
    .product-link:hover { color: var(--primary-dark); gap: 10px; }
    .btn-sm { padding: 10px 20px; font-size: 14px; }
    .product-card-img { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: #f4f6f8; }
    .product-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .product-card-img.eco { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .product-card-img.sports { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
    .product-card-img.general { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
    .product-card-img.mold { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }

    @media (max-width: 1100px) {
      .cat-stats .stats-grid { grid-template-columns: repeat(2,1fr); }
      .cat-stats .stat-item:nth-child(2) { border-right: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .product-cta-card { padding: 40px 24px; }
      .dropdown { min-width: 300px; }
      .dropdown-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-menu, .nav-actions .btn { display: none; }
      .hamburger { display: flex; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .products-tabs { gap: 8px; }
      .tab-btn { font-size: 13px; padding: 8px 14px; }
    }
    @media (max-width: 480px) {
      .cat-stats .stats-grid { grid-template-columns: 1fr; }
      .cat-stats .stat-item { padding: 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
      .cat-stats .stat-item:last-child { border-bottom: none; }
    }

    /* ============================================================
       ABOUT-US PAGE SPECIFIC
    ============================================================ */
    .about-intro { padding: var(--section-padding); }
    .about-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-intro-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; color: var(--dark); line-height: 1.25; margin-bottom: 20px; }
    .about-intro-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
    .about-intro-text p strong { color: var(--dark); }
    .about-intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .about-intro-img img { width: 100%; height: 420px; object-fit: cover; }
    .values-section { padding: var(--section-padding); background: var(--gray-light); }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .value-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s ease; }
    .value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .value-card .value-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
    .value-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
    .whatwedo-section { padding: var(--section-padding); }
    .whatwedo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .whatwedo-list { display: flex; flex-direction: column; gap: 14px; }
    .whatwedo-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--gray-light); border-radius: 10px; transition: all 0.25s ease; }
    .whatwedo-item:hover { background: var(--primary-light); }
    .whatwedo-item .item-icon { width: 40px; height: 40px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
    .whatwedo-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .whatwedo-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }
    .whatwedo-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .whatwedo-img img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
    .services-section { padding: var(--section-padding); background: var(--gray-light); }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .service-card-img { height: 200px; overflow: hidden; }
    .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .service-card:hover .service-card-img img { transform: scale(1.06); }
    .service-card-body { padding: 24px; }
    .service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .service-card-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
    .service-card-body a { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
    .service-card-body a:hover { gap: 10px; }
    .about-banner { width: 100%; position: relative; overflow: hidden; height: 320px; }
    .about-banner img { width: 100%; height: 100%; object-fit: cover; }
    .about-banner .banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,108,168,0.85), rgba(39,174,96,0.75)); display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 40px 24px; }
    .about-banner .banner-overlay h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
    .about-banner .banner-overlay p { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 28px; }
    .history-section { padding: var(--section-padding); }
    .timeline { position: relative; max-width: 800px; margin: 0 auto; }
    .timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 2px; }
    .timeline-item { display: flex; align-items: flex-start; margin-bottom: 40px; position: relative; }
    .timeline-item:nth-child(odd) { flex-direction: row; }
    .timeline-item:nth-child(even) { flex-direction: row-reverse; }
    .timeline-content { width: calc(50% - 36px); background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: relative; }
    .timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
    .timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
    .timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; background: var(--primary); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px var(--primary); z-index: 2; top: 24px; }
    .timeline-content h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
    .timeline-content h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .timeline-content p { font-size: 13px; color: var(--gray); line-height: 1.7; }
    .expect-section { padding: var(--section-padding); background: var(--gray-light); }
    .expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .expect-list { display: flex; flex-direction: column; gap: 20px; }
    .expect-item { display: flex; gap: 16px; align-items: flex-start; }
    .expect-item .expect-num { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--white); flex-shrink: 0; }
    .expect-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .expect-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }
    .expect-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .expect-img img { width: 100%; height: 400px; object-fit: cover; }
    .factory-section { padding: var(--section-padding); }
    .factory-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
    .factory-img-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
    .factory-img-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s ease; }
    .factory-img-card:hover img { transform: scale(1.06); }
    .factory-img-card .factory-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 40px 20px 16px; color: var(--white); }
    .factory-img-card .factory-label h4 { font-size: 15px; font-weight: 700; }
    .factory-img-card .factory-label p { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
    .factory-cta { text-align: center; margin-top: 36px; }
    .certs-section { padding: var(--section-padding); background: var(--gray-light); }
    .certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .cert-card { background: var(--white); border-radius: var(--radius); padding: 32px 20px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s ease; }
    .cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .cert-card .cert-icon { font-size: 36px; margin-bottom: 14px; }
    .cert-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .cert-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
    .cta-section { padding: var(--section-padding); background: linear-gradient(135deg, #0d2b4e 0%, #1b4f85 50%, #0d7c3d 100%); text-align: center; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .cta-section h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; position: relative; }
    .cta-section .btn-white:hover { background: transparent; color: var(--white); transform: none; box-shadow: none; border-color: var(--white); }

    /* About-us responsive */
    @media (max-width: 1100px) {
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .about-intro-inner { gap: 40px; }
      .whatwedo-inner { gap: 40px; }
      .expect-grid { gap: 36px; }
      .certs-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .about-intro-inner { grid-template-columns: 1fr; }
      .whatwedo-inner { grid-template-columns: 1fr; }
      .expect-grid { grid-template-columns: 1fr; }
      .factory-images { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .timeline::before { left: 20px; }
      .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { flex-direction: row; }
      .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: calc(100% - 56px); margin-left: auto; text-align: left; }
      .timeline-dot { left: 20px; }
      .about-banner { height: 240px; }
    }
    @media (max-width: 768px) {
      .values-grid { grid-template-columns: 1fr; }
      .certs-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .certs-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       CASES PAGE SPECIFIC (Cases.html)
    ============================================================ */
    .filter-section { padding: 48px 0 0; }
    .filter-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .filter-tab {
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      border: 2px solid var(--gray-border);
      background: var(--white);
      color: var(--gray);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }
    .filter-tab:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }
    .filter-tab.active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
      box-shadow: 0 4px 14px rgba(27,108,168,0.3);
    }
    .filter-tab .filter-count {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      border-radius: 10px;
      padding: 1px 8px;
      font-size: 12px;
      margin-left: 6px;
    }
    .filter-tab.active .filter-count { background: rgba(255,255,255,0.3); }
    .cases-section { padding: 48px 0 var(--section-padding); }
    .case-detail-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-border);
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .case-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .case-detail-card.hidden { display: none; }
    .case-card-header {
      height: 180px;
      display: flex; align-items: center; justify-content: center;
      font-size: 64px;
      position: relative;
      overflow: hidden;
    }
    .case-card-header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
    }
    .case-card-header.eco { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
    .case-card-header.sports { background: linear-gradient(135deg, #e3f2fd, #90caf9); }
    .case-card-header.general { background: linear-gradient(135deg, #fff3e0, #ffcc80); }
    .case-card-header.mold { background: linear-gradient(135deg, #f3e5f5, #ce93d8); }
    .case-card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
    .case-cat-badge {
      display: inline-block;
      font-size: 11px; font-weight: 700;
      padding: 4px 10px; border-radius: 4px;
      text-transform: uppercase; letter-spacing: 0.5px;
      margin-bottom: 12px;
      width: fit-content;
    }
    .case-cat-badge.eco { background: var(--accent-light); color: var(--accent-dark); }
    .case-cat-badge.sports { background: var(--primary-light); color: var(--primary-dark); }
    .case-cat-badge.general { color: #c26b0a; background: #fff8e1; }
    .case-cat-badge.mold { background: #f5eef8; color: #9b59b6; }
    .case-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
    .case-card-body .case-client {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--gray-border);
    }
    .case-detail-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .case-detail-item { display: flex; gap: 10px; align-items: flex-start; }
    .case-detail-icon {
      width: 28px; height: 28px;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; flex-shrink: 0;
      margin-top: 1px;
    }
    .cdi-challenge { background: #fef2f2; color: #dc2626; }
    .cdi-solution { background: #eff6ff; color: #2563eb; }
    .cdi-result { background: var(--accent-light); color: var(--accent-dark); }
    .case-detail-item div:last-child { flex: 1; }
    .case-detail-item strong {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 2px;
    }
    .case-detail-item strong.challenge-label { color: #dc2626; }
    .case-detail-item strong.solution-label { color: #2563eb; }
    .case-detail-item strong.result-label { color: var(--accent-dark); }
    .case-detail-item p { font-size: 13px; color: var(--gray); line-height: 1.55; }
    .cases-section .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .no-results { display: none; text-align: center; padding: 60px 20px; grid-column: 1 / -1; }
    .no-results.visible { display: block; }
    .no-results .no-results-icon { font-size: 48px; margin-bottom: 16px; }
    .no-results h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .no-results p { font-size: 15px; color: var(--gray); }
    .trust-section { padding: var(--section-padding); }
    .trust-title {
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .trust-title::before, .trust-title::after {
      content: '';
      height: 1px;
      width: 80px;
      background: var(--gray-border);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      align-items: center;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 12px;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      transition: all 0.3s ease;
      height: 80px;
    }
    .trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
    .trust-badge img {
      max-height: 55px;
      max-width: 130px;
      object-fit: contain;
    }

    @media (max-width: 1100px) {
      .cases-section .cases-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 900px) {
      .filter-tabs { gap: 6px; }
      .filter-tab { padding: 8px 16px; font-size: 13px; }
      .cases-section .cases-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .cases-section .cases-grid { grid-template-columns: 1fr; }
      .testimonials .testimonials-grid { grid-template-columns: 1fr; }
      .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
      .filter-tab { flex-shrink: 0; }
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 480px) {
      .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .trust-badge { padding: 12px 8px; height: 65px; }
      .trust-badge img { max-height: 40px; max-width: 100px; }
    }

    /* ============================================================
       CERTIFICATE PAGE SPECIFIC (Certificate.html)
    ============================================================ */
    .page-hero .hero-badge {
      display: inline-flex;
      align-items: center; gap: 8px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      color: #7ec8f5;
      font-size: 13px; font-weight: 600;
      padding: 6px 16px; border-radius: 20px;
      margin-bottom: 20px;
      backdrop-filter: blur(8px);
    }
    .page-hero .hero-desc { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 680px; margin: 0 auto; }
    .quality-overview { padding: var(--section-padding); background: var(--white); }
    .quality-overview .section-subtitle { max-width: 720px; font-size: 16px; line-height: 1.7; }
    .qc-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
    .qc-process-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .qc-process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
    .qc-process-card .step-number {
      display: inline-block;
      width: 48px; height: 48px;
      background: var(--primary);
      color: var(--white);
      font-size: 20px; font-weight: 800;
      line-height: 48px;
      border-radius: 50%;
      margin-bottom: 20px;
    }
    .qc-process-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .qc-process-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
    .cert-showcase { padding: var(--section-padding); background: var(--gray-light); }
    .cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    .cert-showcase .cert-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-border);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .cert-showcase .cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .cert-card-image {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: hidden;
      background: #f0f4f8;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
    }
    .cert-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .cert-showcase .cert-card:hover .cert-card-image img { transform: scale(1.05); }
    .zoom-icon {
      position: absolute;
      top: 12px; right: 12px;
      width: 36px; height: 36px;
      background: rgba(0,0,0,0.55);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--white);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .cert-showcase .cert-card:hover .zoom-icon { opacity: 1; }
    .cert-card-body { padding: 20px 22px; }
    .cert-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .cert-card-body p { font-size: 13px; color: var(--gray); line-height: 1.5; }
    .cert-tag {
      display: inline-block;
      font-size: 11px; font-weight: 600;
      padding: 4px 10px; border-radius: 12px;
      background: var(--accent-light);
      color: var(--accent-dark);
      margin-top: 10px;
    }
    .equipment-section { padding: var(--section-padding); background: var(--white); }
    .equipment-row {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 60px;
    }
    .equipment-row:last-child { margin-bottom: 0; }
    .equipment-row.reverse { flex-direction: row-reverse; }
    .equipment-image { flex: 0 0 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .equipment-image img { width: 100%; height: 300px; object-fit: cover; display: block; }
    .equipment-content { flex: 1; }
    .equipment-content h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .eq-function {
      display: inline-block;
      font-size: 13px; font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 14px; border-radius: 14px;
      margin-bottom: 14px;
    }
    .equipment-content p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
    .equipment-content ul { list-style: none; padding: 0; }
    .equipment-content ul li {
      font-size: 14px; color: #555;
      padding: 6px 0;
      padding-left: 24px;
      position: relative;
    }
    .equipment-content ul li::before {
      content: '\2713 ';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }
    .iso-highlight {
      padding: var(--section-padding);
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      color: var(--white);
    }
    .iso-highlight-inner {
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .iso-highlight-content { flex: 1; }
    .iso-highlight-content .iso-badge {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.3);
      color: #7ec8f5;
      font-size: 13px; font-weight: 600;
      padding: 6px 16px; border-radius: 20px;
      margin-bottom: 20px;
    }
    .iso-highlight-content h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; margin-bottom: 20px; line-height: 1.2; color: var(--white); }
    .iso-highlight-content p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 16px; }
    .iso-highlight-content .iso-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
    .iso-benefit { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
    .iso-benefit .check-icon {
      width: 24px; height: 24px;
      background: var(--accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
      color: var(--white);
    }
    .iso-highlight-image {
      flex: 0 0 380px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: 0 12px 48px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: transform 0.3s;
    }
    .iso-highlight-image:hover { transform: scale(1.02); }
    .iso-highlight-image img { width: 100%; height: 420px; object-fit: contain; border-radius: 4px; }
    .iso-highlight-image .click-hint { text-align: center; font-size: 12px; color: var(--gray); margin-top: 10px; }
    .quality-commitment { padding: var(--section-padding); background: var(--white); }
    .commitment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    .commitment-card {
      text-align: center;
      padding: 40px 28px;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    .commitment-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); }
    .commitment-card .cm-icon { font-size: 40px; margin-bottom: 18px; }
    .commitment-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .commitment-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.9);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .lightbox.active { display: flex; }
    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 8px;
      box-shadow: 0 8px 48px rgba(0,0,0,0.5);
    }
    .lightbox .close-btn {
      position: absolute;
      top: 24px; right: 32px;
      font-size: 36px;
      color: var(--white);
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
    }
    .lightbox .close-btn:hover { color: #ccc; }

    .cta-section { padding: var(--section-padding); background: var(--gray-light); text-align: center; }
    .cta-section .cta-box {
      background: #0d1b2e;
      border-radius: var(--radius);
      padding: 56px 40px;
      box-shadow: var(--shadow);
      max-width: 800px;
      margin: 0 auto;
    }
    .cta-section h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
    .cta-section p { font-size: 16px; color: var(--gray); margin-bottom: 28px; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    @media (max-width: 1024px) {
      .qc-process-grid { grid-template-columns: repeat(2, 1fr); }
      .cert-grid { grid-template-columns: repeat(2, 1fr); }
      .equipment-row, .equipment-row.reverse { flex-direction: column; gap: 32px; }
      .equipment-image { flex: 0 0 auto; width: 100%; }
      .equipment-image img { height: 240px; }
      .iso-highlight-inner { flex-direction: column; gap: 40px; }
      .iso-highlight-image { flex: 0 0 auto; width: 100%; max-width: 380px; }
      .commitment-grid { grid-template-columns: repeat(2, 1fr); }
      .sticky-btn.quote span { display: inline; }
    }
    @media (max-width: 768px) {
      .qc-process-grid { grid-template-columns: 1fr; }
      .cert-grid { grid-template-columns: 1fr; }
      .iso-highlight-content .iso-benefits { grid-template-columns: 1fr; }
      .commitment-grid { grid-template-columns: 1fr; }
      .equipment-image img { height: 200px; }
    }
    @media (max-width: 480px) {
      .cta-actions { flex-direction: column; align-items: center; }
      .iso-highlight-image img { height: 300px; }
    }

    /* ============================================================
       BLOG PAGE SPECIFIC (Blog.html)
    ============================================================ */
    .blog-filter-section { padding: 20px 0 0; }
    .featured-section { padding: var(--section-padding); }
    .featured-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s;
    }
    .featured-card:hover { box-shadow: var(--shadow-hover); }
    .featured-img {
      height: 100%;
      min-height: 320px;
      display: flex; align-items: center; justify-content: center;
      font-size: 72px;
      position: relative;
    }
    .featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
    .featured-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
    .featured-cat {
      display: inline-block;
      font-size: 11px; font-weight: 700;
      color: var(--accent-dark);
      background: var(--accent-light);
      padding: 4px 10px; border-radius: 4px;
      text-transform: uppercase; letter-spacing: 0.5px;
      margin-bottom: 12px;
      width: fit-content;
    }
    .featured-body h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 14px; }
    .featured-excerpt { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
    .featured-meta { display: flex; gap: 16px; font-size: 13px; color: #aaa; margin-bottom: 16px; align-items: center; }
    .read-more { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
    .read-more:hover { color: var(--primary-dark); }
    .blog-section { padding: var(--section-padding); background: var(--gray-light); }
    .blog-section .blog-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s;
    }
    .blog-section .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .blog-section .blog-img {
      height: 200px;
      display: flex; align-items: center; justify-content: center;
      font-size: 52px;
      position: relative;
    }
    .blog-section .blog-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
    .blog-section .img-placeholder { font-size: 56px; z-index: 0; }
    .blog-bg-featured { background: linear-gradient(135deg, #e0f7fa, #80deea); }
    .blog-bg-eco-1 { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
    .blog-bg-eco-2 { background: linear-gradient(135deg, #e3f2fd, #90caf9); }
    .blog-bg-eco-3 { background: linear-gradient(135deg, #fce4ec, #f48fb1); }
    .blog-bg-std-1 { background: linear-gradient(135deg, #fff3e0, #ffcc80); }
    .blog-bg-std-2 { background: linear-gradient(135deg, #f3e5f5, #ce93d8); }
    .blog-bg-std-3 { background: linear-gradient(135deg, #e0f2f1, #80cbc4); }
    .blog-bg-mold-1 { background: linear-gradient(135deg, #e8eaf6, #9fa8da); }
    .blog-bg-mold-2 { background: linear-gradient(135deg, #fff8e1, #ffd54f); }
    .blog-bg-mold-3 { background: linear-gradient(135deg, #efebe9, #bcaaa4); }
    .blog-bg-small-1 { background: linear-gradient(135deg, #e1f5fe, #81d4fa); }
    .blog-bg-small-2 { background: linear-gradient(135deg, #f1f8e9, #aed581); }
    .blog-bg-news-1 { background: linear-gradient(135deg, #fbe9e7, #ffab91); }
    .blog-section .blog-body { padding: 20px; }
    .blog-section .blog-cat {
      font-size: 11px; font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .blog-section .blog-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
    .blog-section .blog-body p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
    .blog-section .blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #aaa; }
    .blog-section .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .newsletter-section { padding: var(--section-padding); }
    .newsletter-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    .newsletter-inner h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
    .newsletter-inner p { font-size: 15px; color: var(--gray); margin-bottom: 24px; line-height: 1.7; }
    .newsletter-form { display: flex; gap: 10px; }
    .newsletter-form input[type="email"] {
      flex: 1;
      padding: 14px 18px;
      border: 2px solid var(--gray-border);
      border-radius: 8px;
      font-size: 15px;
      outline: none;
      transition: border 0.2s;
    }
    .newsletter-form input[type="email"]:focus { border-color: var(--primary); }
    .newsletter-form button {
      padding: 14px 28px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 8px;
      font-size: 15px; font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .newsletter-form button:hover { background: var(--primary-dark); }
    .privacy-note { font-size: 12px; color: var(--gray); margin-top: 12px; }
    .privacy-note a { color: var(--primary); }
    .subscribe-success {
      display: none;
      margin-top: 16px;
      padding: 14px 20px;
      background: var(--accent-light);
      color: var(--accent-dark);
      border-radius: 8px;
      font-size: 14px; font-weight: 600;
    }
    .tags-section { padding: 0 0 60px; }
    .tags-label { text-align: center; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 20px; }
    .tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .tag-badge {
      display: inline-block;
      padding: 8px 16px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 20px;
      font-size: 13px; font-weight: 500;
      color: var(--gray);
      transition: all 0.2s;
    }
    .tag-badge:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

    @media (max-width: 900px) {
      .featured-card { grid-template-columns: 1fr; }
      .featured-img { min-height: 240px; }
      .blog-section .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .blog-section .blog-grid { grid-template-columns: 1fr; }
      .newsletter-form { flex-direction: column; }
    }

    /* ============================================================
       FACTORY PAGE SPECIFIC (Factory.html)
    ============================================================ */
    .stats-section {
      padding: 60px 0;
      background: var(--white);
    }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .stat-card {
      background: var(--gray-light);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    .stat-card:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .stat-card .stat-num {
      font-size: 42px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .stat-card .stat-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.4;
    }
    .gallery-section { padding: var(--section-padding); background: var(--gray-light); }
    .gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      background: var(--white);
      aspect-ratio: 4 / 3;
    }
    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6) 60%, transparent);
      padding: 48px 20px 16px;
      color: var(--white);
    }
    .gallery-label h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .gallery-label p { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 4px; line-height: 1.5; }
    .equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .equipment-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 24px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--primary);
      transition: all 0.3s ease;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .equipment-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-left-color: var(--accent);
    }
    .equipment-card .eq-icon {
      width: 52px; height: 52px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      flex-shrink: 0;
    }
    .equipment-card .eq-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .equipment-card .eq-info p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.6;
    }
    .qc-section { padding: var(--section-padding); background: var(--gray-light); }
    .qc-flow {
      display: flex;
      align-items: stretch;
      gap: 24px;
      position: relative;
    }
    .qc-step {
      flex: 1;
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
    }
    .qc-step:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .qc-step .qc-num {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; font-weight: 800; color: var(--white);
      margin: 0 auto 20px;
    }
    .qc-step h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
    }
    .qc-step ul {
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .qc-step ul li {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.6;
      padding-left: 20px;
      position: relative;
    }
    .qc-step ul li::before {
      content: '\2713 ';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
      font-size: 12px;
    }
    .qc-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 32px;
      color: var(--primary);
      font-weight: 800;
    }
    .certs-section .certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .certs-section .cert-card .cert-icon { font-size: 36px; margin-bottom: 14px; }
    .tour-cta-section { padding: var(--section-padding); background: var(--gray-light); }
    .tour-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .tour-cta-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; color: var(--dark); line-height: 1.25; margin-bottom: 16px; }
    .tour-cta-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
    .tour-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .tour-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark); font-weight: 500; }
    .tour-features li .tf-icon {
      width: 28px; height: 28px;
      background: var(--accent-light);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent-dark);
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .tour-cta-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .tour-cta-img img { width: 100%; height: 380px; object-fit: cover; }

    @media (max-width: 1100px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .equipment-grid { grid-template-columns: repeat(2, 1fr); }
      .certs-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item.featured { grid-row: span 1; }
    }
    @media (max-width: 900px) {
      :root { --section-padding: 56px 0; }
      .qc-flow { flex-direction: column; }
      .qc-arrow { transform: rotate(90deg); }
      .tour-cta-inner { grid-template-columns: 1fr; }
      .equipment-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .certs-grid { grid-template-columns: 1fr 1fr; }
      .page-hero { padding: 60px 0 40px; }
    }
    @media (max-width: 480px) {
      .certs-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       FAQ PAGE SPECIFIC (FAQ/)
    ============================================================ */
    .faq-tabs-section { padding: 40px 0 0; background: var(--white); }
    .faq-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      border-bottom: 2px solid var(--gray-border);
      padding-bottom: 16px;
      margin-bottom: 48px;
    }
    .faq-tab {
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--gray);
      border-radius: 24px;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
      border: 1px solid transparent;
      background: var(--gray-light);
    }
    .faq-tab:hover {
      color: var(--primary);
      background: var(--primary-light);
    }
    .faq-tab.active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }
    .faq-content-section { padding: 0 0 80px; background: var(--white); }
    .faq-wrapper {
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }
    .faq-main { flex: 1; min-width: 0; }
    .faq-sidebar {
      width: 340px;
      flex-shrink: 0;
      position: sticky;
      top: 96px;
    }
    .faq-category-section { margin-bottom: 48px; }
    .faq-category-heading {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--primary-light);
    }
    .faq-category-heading .cat-icon {
      width: 44px; height: 44px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .faq-category-heading h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--dark);
    }
    .faq-category-heading h3 small {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: var(--gray);
      margin-top: 2px;
    }
    .faq-list { display: flex; flex-direction: column; gap: 14px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .faq-item:hover { border-color: var(--primary); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px;
      font-size: 15px; font-weight: 600; color: var(--dark);
      cursor: pointer;
      gap: 12px;
      user-select: none;
    }
    .faq-q .q-icon {
      font-size: 14px; color: var(--primary); flex-shrink: 0;
      transition: transform 0.3s;
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--primary-light);
      border-radius: 50%;
      background: var(--primary-light);
    }
    .faq-item.open .q-icon { transform: rotate(180deg); background: var(--primary); color: var(--white); border-color: var(--primary); }
    .faq-a {
      padding: 0 20px 18px;
      font-size: 14px; color: var(--gray);
      line-height: 1.75;
      display: none;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-a strong { color: var(--dark); }
    .faq-a ul {
      list-style: disc;
      padding-left: 20px;
      margin: 8px 0;
    }
    .faq-a ul li { margin-bottom: 4px; }
    .faq-no-results {
      text-align: center;
      padding: 60px 20px;
      display: none;
    }
    .faq-no-results h3 {
      font-size: 20px;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .faq-no-results p {
      font-size: 15px;
      color: var(--gray);
    }
    /* CTA Section (Can't Find Your Answer?) */
    .cta-section { padding: var(--section-padding); background: linear-gradient(135deg, #0d2b4e 0%, #1b4f85 50%, #0d7c3d 100%); text-align: center; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .cta-section h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; position: relative; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

    .faq-help-card {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      border-radius: 16px;
      padding: 36px 28px;
      color: var(--white);
      text-align: center;
    }
    .faq-help-card h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .faq-help-card p {
      font-size: 14px;
      opacity: 0.85;
      margin-bottom: 24px;
      line-height: 1.7;
    }
    .faq-help-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .faq-help-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--white);
      font-size: 14px;
      text-align: left;
      transition: background 0.2s;
    }
    .faq-help-item:hover { background: rgba(255,255,255,0.2); }
    .faq-help-item .hi-icon { font-size: 18px; flex-shrink: 0; }
    .faq-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
    .faq-contact-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      color: var(--white);
      transition: background 0.25s, transform 0.25s;
    }
    .faq-contact-card:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-4px);
    }
    .faq-contact-card .cc-icon {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .faq-contact-card strong {
      display: block;
      font-size: 16px;
      margin-bottom: 6px;
    }
    .faq-contact-card span {
      font-size: 13px;
      opacity: 0.8;
    }

    @media (max-width: 1100px) {
      .faq-contact-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 960px) {
      .faq-wrapper { flex-direction: column; gap: 36px; }
      .faq-sidebar { width: 100%; position: static; }
      .faq-contact-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 900px) {
      :root { --section-padding: 56px 0; }
      .faq-tabs { gap: 6px; padding-bottom: 12px; }
      .faq-tab { padding: 8px 14px; font-size: 12px; }
    }
    @media (max-width: 768px) {
      .faq-category-heading h3 { font-size: 18px; }
      .faq-contact-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .faq-tabs { flex-direction: column; align-items: stretch; }
      .faq-tab { text-align: center; }
      .faq-q { padding: 14px 16px; font-size: 14px; }
      .faq-a { padding: 0 16px 14px; font-size: 13px; }
    }

    /* ============================================================
       CUSTOM SOLUTIONS PAGE SPECIFIC (Custom-Solutions/)
    ============================================================ */
    .cs-hero { padding: var(--section-padding); }
    .cs-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .cs-hero-left .hero-label {
      display: inline-block;
      background: var(--accent-light);
      color: var(--accent-dark);
      font-size: 13px; font-weight: 600;
      padding: 6px 16px; border-radius: 20px;
      margin-bottom: 16px;
    }
    .cs-hero-left h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
    .cs-hero-left p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
    .hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-badges .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      padding: 8px 14px;
      font-size: 13px; font-weight: 500; color: var(--dark);
    }
    .bd-icon { font-size: 16px; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .cs-hero-right { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .cs-hero-right img { width: 100%; height: 400px; object-fit: cover; }
    .why-section { padding: var(--section-padding); background: var(--gray-light); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
    .why-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .why-icon { font-size: 36px; margin-bottom: 14px; }
    .why-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .why-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }
    .caps-section { padding: var(--section-padding); }
    .caps-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
    .caps-list { display: flex; flex-direction: column; gap: 16px; }
    .caps-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      transition: all 0.2s;
    }
    .caps-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(27,108,168,0.1); }
    .item-icon {
      width: 44px; height: 44px;
      background: var(--primary-light);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .caps-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .caps-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }
    .caps-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .caps-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
    .process-section { padding: var(--section-padding); background: var(--gray-light); }
    .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
    .process-step {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .step-circle {
      width: 56px; height: 56px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      margin: 0 auto 14px;
    }
    .process-step h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .process-step p { font-size: 12px; color: var(--gray); line-height: 1.6; }
    .industry-section { padding: var(--section-padding); }
    .industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
    .industry-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .ind-icon { font-size: 36px; margin-bottom: 12px; }
    .industry-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .industry-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }
    .moq-section { padding: var(--section-padding); background: var(--gray-light); }
    .moq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .moq-card {
      background: linear-gradient(135deg, var(--accent), #1a7a46);
      border-radius: 16px;
      padding: 36px;
      color: var(--white);
      text-align: center;
    }
    .moq-card .moq-icon { font-size: 48px; margin-bottom: 16px; }
    .moq-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
    .moq-card p { font-size: 15px; opacity: 0.9; margin-bottom: 24px; }
    .moq-features { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 28px; }
    .moq-feature {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px;
    }
    .moq-feature .check { color: #5de8a0; font-weight: 700; font-size: 16px; }

    @media (max-width: 1100px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .cs-hero-inner { grid-template-columns: 1fr; }
      .cs-hero-right img { height: 300px; }
      .caps-inner { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(3, 1fr); }
      .industry-grid { grid-template-columns: repeat(3, 1fr); }
      .moq-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .why-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .industry-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .industry-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       CONTACT US PAGE SPECIFIC (Contact-us/)
    ============================================================ */
    .map-section { padding: var(--section-padding); background: var(--gray-light); }
    .map-wrapper { margin-top: 32px; }
    .map-placeholder {
	      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 48px 32px;
      text-align: center;
    }
    .map-icon { font-size: 48px; margin-bottom: 16px; }
    .map-address { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 12px; line-height: 1.6; }
    .map-placeholder p { font-size: 14px; color: var(--gray); }
    .quick-contact-section { padding: var(--section-padding); }
    .quick-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
    .quick-contact-card {
		  
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .quick-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .qc-icon { font-size: 32px; margin-bottom: 12px; }
    .quick-contact-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .quick-contact-card a { font-size: 14px; color: var(--primary); word-break: break-all; }
    .quick-contact-card p { font-size: 14px; color: var(--gray); }
    .faq-cta-section { padding: var(--section-padding); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); text-align: center; }
    .faq-cta-section h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
    .faq-cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; }
    .faq-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    @media (max-width: 900px) {
      .quick-contact-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .quick-contact-grid { grid-template-columns: 1fr; }
    }
.pagebar .pageTeam {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.pageTeam a {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
	font-size: 12px;
	padding: 5px 10px;
	margin: 0 2px;
	border-radius: 3px;
}
.pageTeam span {
	color: #333;
	font-size: 12px;
	padding: 7px 2px;
	margin: 0 2px;
	border-radius: 3px;
}
.pageTeam a:hover {
	background:#e73828;
	color: #ffffff;
	border: 1px solid #e73828;
}
.pageTeam a.page-num-current {
	color: #fff;
	background: #223f99;
	border: 1px solid #223f99;
}
.pageTeam .st {
	font-family: 'SimSun', serif;
}

/* ============================================================
   HOME PAGE NEW SECTIONS (2026 Optimization)
============================================================ */

/* Hero pain-point highlight */
.hero-feature.pain-point {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.hero-feature.pain-point .check { color: var(--accent-dark); font-size: 15px; }

/* Mold & Tooling Flow Section */
.tooling-flow { padding: var(--section-padding); background: linear-gradient(135deg, #0d2b4e 0%, #1b4f85 100%); position: relative; overflow: hidden; }
.tooling-flow::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.tooling-flow .container { position: relative; z-index: 1; text-align: center; }
.tooling-flow .section-label { background: rgba(255,255,255,0.15); color: #7ec8f5; }
.tooling-flow .section-title { color: #fff; }
.tooling-flow .section-subtitle { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; }
.tooling-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.tooling-flow-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  position: relative;
}
.tooling-flow-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.tooling-flow-card .flow-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.tooling-flow-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #5de8a0; }
.tooling-flow-card p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.tooling-flow-card .flow-arrow {
  position: absolute; right: -18px; top: 40%;
  font-size: 22px; color: rgba(255,255,255,0.3);
}
.tooling-flow-card:last-child .flow-arrow { display: none; }

/* Material tags for product cards */
.material-bar {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px; padding: 10px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.material-bar-label {
  font-size: 10px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
  align-self: center;
}
.material-tag {
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 12px;
  background: #e8f5e9; color: #2e7d32;
  white-space: nowrap;
}
.material-tag.mt-pla { background: #e8f5e9; color: #2e7d32; }
.material-tag.mt-wheat { background: #fff8e1; color: #e65100; }
.material-tag.mt-coffee { background: #efebe9; color: #4e342e; }
.material-tag.mt-bamboo { background: #f1f8e9; color: #558b2f; }
.material-tag.mt-pp { background: #e3f2fd; color: #1565c0; }
.material-tag.mt-silicone { background: #fce4ec; color: #c62828; }

/* Inline Inquiry Form Section */
.inline-inquiry { padding: var(--section-padding); background: var(--gray-light); }
.inquiry-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.inquiry-info h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.2; }
.inquiry-info p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.inquiry-perks { display: flex; flex-wrap: wrap; gap: 12px; }
.inquiry-perk {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 6px 14px; border-radius: 20px;
}
.inquiry-perk .ip-icon { font-size: 16px; }
.inquiry-form-compact { display: flex; flex-direction: column; gap: 12px; }
.inquiry-form-compact input,
.inquiry-form-compact textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: 8px; font-size: 14px;
  font-family: inherit;
  outline: none; transition: border 0.2s;
}
.inquiry-form-compact input:focus,
.inquiry-form-compact textarea:focus { border-color: var(--primary); }
.inquiry-form-compact textarea { resize: vertical; min-height: 90px; }
.inquiry-form-compact .btn { justify-content: center; }

/* Home Certificate Section */
.home-certs { padding: var(--section-padding); background: var(--white); }
.certs-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.cert-showcase-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: all 0.3s;
}
.cert-showcase-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cert-showcase-img { height: 300px; overflow: hidden; cursor: pointer; position: relative; }
.cert-showcase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cert-showcase-item:hover .cert-showcase-img img { transform: scale(1.05); }
.cert-showcase-img::after {
  content: 'Click to Enlarge';
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 12px; padding: 8px; text-align: center;
  opacity: 0; transition: opacity 0.3s;
}
.cert-showcase-item:hover .cert-showcase-img::after { opacity: 1; }
.cert-showcase-body { padding: 18px 20px; text-align: center; }
.cert-showcase-body h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cert-showcase-body p { font-size: 12px; color: var(--gray); }

/* Home Blog Section */
.home-blog { padding: var(--section-padding); background: var(--gray-light); }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.home-blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: all 0.3s;
}
.home-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.home-blog-img { height: 180px; overflow: hidden; }
.home-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.home-blog-card:hover .home-blog-img img { transform: scale(1.06); }
.home-blog-body { padding: 20px; }
.home-blog-body .blog-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--accent-dark); background: var(--accent-light);
  padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.home-blog-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.home-blog-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.home-blog-body .blog-date { font-size: 12px; color: #aaa; }

/* Testimonial enhancement */
.testi-card.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
}

/* Responsive for new sections */
@media (max-width: 1100px) {
  .tooling-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .inquiry-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .tooling-flow-grid { grid-template-columns: 1fr; }
  .tooling-flow-card .flow-arrow { display: none; }
  .certs-showcase-grid { grid-template-columns: 1fr; }
  .home-blog-grid { grid-template-columns: 1fr; }
}