:root {
      --green-50: #f0fdf4;
      --green-100: #dcfce7;
      --green-200: #bbf7d0;
      --green-300: #86efac;
      --green-400: #4ade80;
      --green-500: #22c55e;
      --green-600: #16a34a;
      --green-700: #15803d;
      --green-800: #166534;
      --green-900: #14532d;

      --gold: #D4A843;
      --gold-light: #E8C06A;
      --gold-dark: #A07830;

      --primary: #15803d;
      --primary-dark: #166534;
      --primary-light: #16a34a;

      --text-dark: #111827;
      --text-body: #4b5563;
      --text-muted: #6b7280;
      --text-light: #9ca3af;
      --bg: #ffffff;
      --bg-alt: #f9fafb;
      --bg-card: #ffffff;
      --border: #e5e7eb;
      --border-light: #f3f4f6;

      --radius: 14px;
      --shadow: 0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text-body);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

    /* 鈹€鈹€鈹€ TOP BAR 鈹€鈹€鈹€ */
    .topbar {
      background: var(--green-900);
      color: rgba(255,255,255,0.75);
      font-size: 12.5px;
      padding: 0 24px;
    }
    .topbar-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 40px;
    }
    .topbar-left { display: flex; align-items: center; gap: 20px; }
    .topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); }
    .topbar-item i { color: var(--gold); font-size: 11px; }
    .topbar-item a:hover { color: #fff; }
    .topbar-right { display: flex; align-items: center; gap: 14px; }
    .topbar-social { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
    .topbar-social:hover { color: var(--gold); }

    /* 鈹€鈹€鈹€ NAVBAR 鈹€鈹€鈹€ */
    .navbar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .navbar-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      height: 72px; display: flex; align-items: center; justify-content: space-between;
      gap: 0;
    }

    /* Logo */
    .nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav-logo-img {
      width: 46px; height: 46px; border-radius: 11px;
      object-fit: cover; border: 2px solid rgba(21,128,61,0.2);
    }
    .nav-logo-text .brand { font-size: 18px; font-weight: 900; color: var(--green-900); letter-spacing: 0.04em; }
    .nav-logo-text .tagline { font-size: 9px; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1px; }

    /* Menu */
    .nav-menu {
      display: flex; align-items: center; gap: 0;
      margin: 0 32px;
      list-style: none;
    }
    .nav-item { position: relative; }
    .nav-link-top {
      display: flex; align-items: center; gap: 5px;
      padding: 24px 14px; font-size: 13.5px; font-weight: 600;
      color: var(--text-dark); transition: all 0.2s;
      cursor: pointer; white-space: nowrap;
    }
    .nav-link-top:hover, .nav-item:hover .nav-link-top {
      color: var(--primary);
    }
    .nav-link-top .fa-chevron-down { font-size: 9px; transition: transform 0.2s; }
    .nav-item:hover .fa-chevron-down { transform: rotate(180deg); }

    /* Mega Dropdown */
    .nav-dropdown {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      background: #fff; border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      border: 1px solid var(--border-light);
      padding: 28px;
      opacity: 0; visibility: hidden;
      transform: translateX(-50%) translateY(8px);
      transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
      z-index: 200; min-width: 900px;
    }
    .nav-item:hover .nav-dropdown {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    /* Arrow */
    .nav-dropdown::before {
      content: ''; position: absolute; top: -7px; left: 50%;
      transform: translateX(-50%);
      width: 14px; height: 14px;
      background: #fff;
      border-left: 1px solid var(--border-light);
      border-top: 1px solid var(--border-light);
      transform: translateX(-50%) rotate(45deg);
    }
    .dropdown-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
    }
    .dropdown-section-title {
      font-size: 10.5px; font-weight: 700; color: var(--primary);
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 0 10px 8px; border-bottom: 1px solid var(--border-light);
      margin-bottom: 6px;
    }
    .dropdown-link {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 10px; border-radius: 8px;
      font-size: 13px; font-weight: 500; color: var(--text-dark);
      transition: all 0.15s; cursor: pointer;
    }
    .dropdown-link:hover { background: var(--green-50); color: var(--primary); }
    .dropdown-link .dd-icon { font-size: 18px; flex-shrink: 0; width: 24px; text-align: center; }
    .dropdown-link .dd-text { flex: 1; }
    .dropdown-link .dd-text .dd-name { font-weight: 600; font-size: 13px; }
    .dropdown-link .dd-text .dd-desc { font-size: 10.5px; color: var(--text-light); margin-top: 1px; }
    .dropdown-link .dd-arrow { color: var(--text-light); font-size: 10px; }
    .dropdown-link:hover .dd-arrow { color: var(--primary); }
    .dropdown-divider { height: 1px; background: var(--border-light); margin: 8px 0; grid-column: 1/-1; }
    .dropdown-footer {
      grid-column: 1/-1; background: var(--green-50);
      border-radius: 10px; padding: 14px 16px;
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 8px;
    }
    .dropdown-footer-text { font-size: 12px; color: var(--text-muted); }
    .dropdown-footer-text strong { color: var(--primary); font-weight: 700; }
    .dropdown-footer-btn {
      padding: 7px 16px; background: var(--primary); color: #fff;
      font-size: 12px; font-weight: 700; border-radius: 8px;
      transition: all 0.2s; white-space: nowrap;
    }
    .dropdown-footer-btn:hover { background: var(--primary-dark); }

    /* Nav right side */
    .nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
    .nav-phone {
      display: flex; align-items: center; gap: 7px;
      font-size: 13.5px; font-weight: 700; color: var(--green-900);
      border-left: 2px solid var(--green-200); padding-left: 16px;
    }
    .nav-phone i { color: var(--gold); font-size: 13px; }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 22px; font-size: 13.5px; font-weight: 700;
      background: var(--primary); color: #fff; border-radius: 10px;
      transition: all 0.25s; box-shadow: 0 2px 8px rgba(21,128,61,0.3);
    }
    .nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,128,61,0.35); }
    .nav-hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--text-muted); cursor: pointer; padding: 4px; }

    /* Mobile menu */
    .mobile-menu {
      display: none; flex-direction: column; gap: 0;
      background: #fff; border-top: 1px solid var(--border);
      padding: 8px 20px 20px; max-height: 80vh; overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display: block; padding: 12px 4px; font-size: 14.5px; font-weight: 500;
      color: var(--text-dark); border-bottom: 1px solid var(--border-light);
    }
    .mobile-menu a:last-child {
      border: none; margin-top: 10px; background: var(--primary);
      color: #fff; font-weight: 700; border-radius: 10px; text-align: center; padding: 13px;
    }

    /* 鈹€鈹€鈹€ HERO 鈹€鈹€鈹€ */
    .hero {
      background: linear-gradient(150deg, #f0fdf4 0%, #ffffff 55%, #fffbeb 100%);
      padding: 72px 24px 80px; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(21,128,61,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; bottom: -60px; left: -40px;
      width: 350px; height: 350px; border-radius: 50%;
      background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px 6px 8px; border-radius: 50px;
      background: rgba(21,128,61,0.08); border: 1px solid rgba(21,128,61,0.15);
      font-size: 12px; font-weight: 600; color: var(--primary); margin-bottom: 20px;
    }
    .hero-badge i { color: var(--gold); }
    .hero h1 {
      font-size: clamp(34px, 4.5vw, 56px); font-weight: 900;
      line-height: 1.1; color: var(--green-900); margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .hero h1 span { color: var(--primary); }
    .hero-desc {
      font-size: 16px; line-height: 1.75; color: var(--text-body);
      max-width: 480px; margin-bottom: 32px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; font-size: 14px; font-weight: 700;
      background: var(--primary); color: #fff; border-radius: 10px;
      transition: all 0.25s; box-shadow: 0 3px 12px rgba(21,128,61,0.3);
    }
    .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(21,128,61,0.35); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; font-size: 14px; font-weight: 600;
      border: 1.5px solid var(--border); color: var(--text-dark);
      border-radius: 10px; background: #fff; transition: all 0.2s;
    }
    .btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--green-50); }
    .hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
    .hero-trust-item i { color: var(--primary); font-size: 11px; }

    /* Hero Logo Visual */
    .hero-visual { display: flex; flex-direction: column; align-items: center; }
    .hero-logo-wrap {
      position: relative; width: 280px; height: 280px;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-logo-glow {
      position: absolute; inset: -16px; border-radius: 50%;
      background: radial-gradient(circle, rgba(21,128,61,0.12) 0%, transparent 70%);
      animation: glowPulse 3s ease-in-out infinite;
    }
    @keyframes glowPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: 0.8; } }
    .hero-logo-ring {
      position: absolute; border-radius: 50%;
      border: 1.5px solid rgba(21,128,61,0.12);
      animation: ringPulse 3s ease-in-out infinite;
    }
    .hero-logo-ring:nth-child(2) { inset: 10px; animation-delay: 0.4s; border-color: rgba(212,168,67,0.12); }
    .hero-logo-ring:nth-child(3) { inset: 22px; animation-delay: 0.8s; border-color: rgba(21,128,61,0.07); }
    @keyframes ringPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
    .hero-logo-img {
      width: 190px; height: 190px; border-radius: 50%;
      object-fit: cover; position: relative; z-index: 1;
      border: 3px solid rgba(21,128,61,0.2);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    }
    .hero-logo-label { margin-top: 18px; text-align: center; }
    .hero-logo-label .name { font-size: 15px; font-weight: 900; color: var(--green-900); letter-spacing: 0.1em; }
    .hero-logo-label .sub { font-size: 10px; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 3px; }

    /* Hero Slider (right) */
    .hero-slider {
      position: relative; width: 100%;
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.14);
      background: #fff; aspect-ratio: 4/3;
    }
    .hero-slider-track { position: relative; width: 100%; height: 100%; }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0; visibility: hidden;
      transition: opacity 0.7s ease-in-out, visibility 0.7s;
    }
    .hero-slide.active { opacity: 1; visibility: visible; }
    .hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-slide-caption {
      position: absolute; left: 20px; bottom: 18px; right: 20px;
      background: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0.2) 70%, transparent);
      color: #fff; padding: 16px 18px; border-radius: 12px;
      backdrop-filter: blur(2px);
    }
    .hero-slide-caption .ct-title { font-size: 16px; font-weight: 800; margin-bottom: 4px; letter-spacing: 0.01em; }
    .hero-slide-caption .ct-desc { font-size: 12px; opacity: 0.85; }
    .hero-slide-caption .ct-tag {
      display: inline-block; font-size: 10px; font-weight: 700;
      padding: 2px 8px; background: var(--gold); color: var(--green-900);
      border-radius: 50px; margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .hero-slider-dots {
      position: absolute; bottom: 14px; left: 0; right: 0;
      display: flex; justify-content: center; gap: 8px; z-index: 5;
    }
    .hero-slider-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.5); cursor: pointer;
      transition: all 0.3s; border: none;
    }
    .hero-slider-dot.active {
      background: #fff; width: 24px; border-radius: 4px;
    }
    .hero-slider-arrows {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 12px; z-index: 4; pointer-events: none;
    }
    .hero-slider-arrow {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--green-900); font-size: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      pointer-events: auto; transition: all 0.2s;
    }
    .hero-slider-arrow:hover { background: #fff; transform: scale(1.08); }
    .hero-slider-feature {
      margin-top: 18px; display: flex; align-items: center; gap: 10px;
      justify-content: center;
    }
    .hero-slider-feature .badge {
      padding: 5px 12px; background: var(--green-50);
      border: 1px solid var(--green-200); border-radius: 50px;
      font-size: 11px; font-weight: 700; color: var(--primary);
      display: flex; align-items: center; gap: 5px;
    }
    .hero-slider-feature .badge i { color: var(--gold); font-size: 10px; }

    /* 鈹€鈹€鈹€ VALUE BAR 鈹€鈹€鈹€ */
    .value-bar { background: var(--green-900); padding: 20px 24px; }
    .value-bar-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .value-item {
      display: flex; align-items: center; gap: 12px;
      padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.1);
    }
    .value-item:last-child { border-right: none; }
    .value-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(255,255,255,0.1); display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
      color: var(--gold); font-size: 16px;
    }
    .value-text { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.4; }
    .value-text span { display: block; font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,0.6); }

    /* 鈹€鈹€鈹€ SECTION BASE 鈹€鈹€鈹€ */
    .section { padding: 80px 24px; }
    .section-alt { background: var(--bg-alt); }
    .section-inner { max-width: 1280px; margin: 0 auto; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
    }
    .section-label::before {
      content: ''; width: 20px; height: 2px;
      background: var(--primary); border-radius: 2px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 40px); font-weight: 900;
      line-height: 1.15; color: var(--green-900); margin-bottom: 14px;
    }
    .section-title span { color: var(--primary); }
    .section-desc { font-size: 15px; line-height: 1.7; color: var(--text-muted); max-width: 520px; }
    .section-header { margin-bottom: 48px; }

    /* 鈹€鈹€鈹€ PRODUCTS GRID 鈹€鈹€鈹€ */
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
    .product-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      transition: all 0.3s; cursor: pointer;
      box-shadow: var(--shadow-sm);
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(21,128,61,0.25);
    }
    .product-card-top {
      height: 140px; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #f0fdf4, #f8faf9);
      position: relative; overflow: hidden;
    }
    .product-card-top .svg-wrap { display: flex; align-items: center; justify-content: center; }
    .product-card-badge {
      position: absolute; top: 10px; right: 10px;
      background: var(--primary); color: #fff;
      font-size: 10px; font-weight: 700; padding: 3px 8px;
      border-radius: 50px; letter-spacing: 0.05em;
    }
    .product-card-body { padding: 16px 18px 18px; }
    .product-card-title { font-size: 14.5px; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
    .product-card-desc { font-size: 12px; line-height: 1.6; color: var(--text-muted); margin-bottom: 12px; }
    .product-card-link { font-size: 12.5px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
    .product-card:hover .product-card-link { gap: 9px; }

    /* 鈹€鈹€鈹€ STATS 鈹€鈹€鈹€ */
    .stats-section { background: var(--green-900); padding: 60px 24px; }
    .stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-right: none; }
    .stat-value { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
    .stat-value .gold { color: var(--gold); }
    .stat-label { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0.05em; }
    .stat-sub { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }

    /* 鈹€鈹€鈹€ WHY US 鈹€鈹€鈹€ */
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .why-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 22px; text-align: center;
      box-shadow: var(--shadow-sm); transition: all 0.3s;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(21,128,61,0.2); }
    .why-icon {
      width: 58px; height: 58px; border-radius: 14px;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px; color: var(--primary); font-size: 22px;
    }
    .why-title { font-size: 15px; font-weight: 700; color: var(--green-900); margin-bottom: 9px; }
    .why-desc { font-size: 12.5px; line-height: 1.65; color: var(--text-muted); }

    /* 鈹€鈹€鈹€ BULK BANNER 鈹€鈹€鈹€ */
    .bulk-banner {
      margin-top: 40px; border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--green-50), #ffffff);
      border: 1.5px solid var(--green-200); padding: 40px 48px;
      display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
    }
    .bulk-title { font-size: 22px; font-weight: 800; color: var(--green-900); margin-bottom: 8px; }
    .bulk-desc { font-size: 13.5px; color: var(--text-muted); }
    .bulk-stats { display: flex; gap: 0; }
    .bulk-stat { text-align: center; padding: 0 28px; border-right: 1px solid var(--green-200); }
    .bulk-stat:last-child { border-right: none; }
    .bulk-stat-value { font-size: 28px; font-weight: 900; color: var(--primary); }
    .bulk-stat-label { font-size: 11px; color: var(--text-light); margin-top: 3px; }

    /* 鈹€鈹€鈹€ PROCESS 鈹€鈹€鈹€ */
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
    .process-grid::before {
      content: ''; position: absolute; top: 34px; left: 12%; right: 12%;
      height: 2px; background: linear-gradient(90deg, var(--green-300), var(--green-200), transparent);
      z-index: 0;
    }
    .process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
    .process-num {
      width: 68px; height: 68px; border-radius: 50%;
      background: var(--primary); color: #fff;
      font-size: 20px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(21,128,61,0.3);
    }
    .process-title { font-size: 14.5px; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
    .process-desc { font-size: 12.5px; line-height: 1.65; color: var(--text-muted); }

    /* 鈹€鈹€鈹€ CONTACT 鈹€鈹€鈹€ */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; margin-top: 48px; }
    .contact-info-desc { font-size: 14.5px; line-height: 1.75; color: var(--text-muted); margin-bottom: 32px; max-width: 400px; }
    .contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
    .contact-item-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 15px;
    }
    .contact-item-label { font-size: 10.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 3px; }
    .contact-item-value { font-size: 14px; font-weight: 600; color: var(--green-900); }
    .contact-item-value a:hover { color: var(--primary); }
    .contact-socials { display: flex; gap: 10px; margin-top: 28px; }
    .contact-social {
      width: 40px; height: 40px; border-radius: 10px;
      border: 1px solid var(--border); background: #fff;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 14px; transition: all 0.2s;
    }
    .contact-social:hover { border-color: var(--primary); color: var(--primary); background: var(--green-50); }

    .form-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-field { margin-bottom: 16px; }
    .form-label { font-size: 12px; font-weight: 600; color: var(--text-body); margin-bottom: 7px; display: block; }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 11px 14px; font-size: 13.5px;
      background: var(--bg-alt); border: 1.5px solid var(--border);
      border-radius: 10px; color: var(--text-dark); font-family: 'Inter', sans-serif;
      transition: all 0.2s; outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--primary); background: #fff;
      box-shadow: 0 0 0 3px rgba(21,128,61,0.08);
    }
    .form-select { appearance: none; cursor: pointer; }
    .form-select option { background: #fff; }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; padding: 14px; font-size: 14px; font-weight: 700;
      background: var(--primary); color: #fff; border: none; border-radius: 10px;
      cursor: pointer; transition: all 0.25s; margin-top: 4px;
      font-family: 'Inter', sans-serif; box-shadow: 0 3px 12px rgba(21,128,61,0.3);
    }
    .form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,128,61,0.35); }
    .form-note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 10px; }

    /* 鈹€鈹€鈹€ FOOTER 鈹€鈹€鈹€ */
    .footer { background: var(--green-900); padding: 60px 24px 32px; color: rgba(255,255,255,0.6); }
    .footer-inner { max-width: 1280px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand .nav-logo-text .brand { color: #fff; }
    .footer-brand .nav-logo-text .tagline { color: var(--gold); }
    .footer-brand .nav-logo-img { border-color: rgba(255,255,255,0.15); }
    .footer-desc { font-size: 12.5px; line-height: 1.7; margin: 14px 0 20px; max-width: 260px; color: rgba(255,255,255,0.45); }
    .footer-socials { display: flex; gap: 8px; }
    .footer-social {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); font-size: 13px; transition: all 0.2s;
    }
    .footer-social:hover { background: rgba(255,255,255,0.15); color: var(--gold); }
    .footer-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-newsletter-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
    .footer-newsletter-form { display: flex; gap: 8px; }
    .footer-newsletter-input {
      flex: 1; padding: 10px 13px; font-size: 12.5px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; color: #fff; outline: none; font-family: 'Inter', sans-serif;
    }
    .footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
    .footer-newsletter-input:focus { border-color: rgba(212,168,67,0.5); }
    .footer-newsletter-btn {
      padding: 10px 16px; font-size: 12px; font-weight: 700;
      background: var(--gold); color: var(--green-900); border: none;
      border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif;
      white-space: nowrap; transition: all 0.2s;
    }
    .footer-newsletter-btn:hover { background: var(--gold-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* 鈹€鈹€鈹€ MODAL 鈹€鈹€鈹€ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
      display: none; align-items: center; justify-content: center; padding: 24px;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: #fff; border-radius: 24px; padding: 48px 40px;
      max-width: 420px; width: 100%; text-align: center; box-shadow: var(--shadow-lg);
    }
    .modal-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; color: var(--primary); font-size: 28px;
    }
    .modal-title { font-size: 22px; font-weight: 900; color: var(--green-900); margin-bottom: 10px; }
    .modal-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 28px; }
    .modal-btn {
      padding: 12px 32px; background: var(--primary); color: #fff;
      font-weight: 700; font-size: 13.5px; border-radius: 10px;
      border: none; cursor: pointer; font-family: 'Inter', sans-serif;
      transition: all 0.2s;
    }
    .modal-btn:hover { background: var(--primary-dark); }

    /* 鈹€鈹€鈹€ REVEAL 鈹€鈹€鈹€ */
    .reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* 鈹€鈹€鈹€ RESPONSIVE 鈹€鈹€鈹€ */
    @media (max-width: 1100px) {
      .nav-menu { display: none; }
      .nav-phone { display: none; }
      .nav-hamburger { display: block; }
      .nav-right { gap: 10px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .hero-visual { order: -1; }
      .hero-desc { margin: 0 auto 32px; }
      .hero-actions { justify-content: center; }
      .hero-trust { justify-content: center; }
      .value-bar-inner { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .process-grid::before { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .bulk-banner { grid-template-columns: 1fr; gap: 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 768px) {
      .value-bar-inner { grid-template-columns: 1fr 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .bulk-banner { padding: 28px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .nav-cta { padding: 9px 16px; font-size: 13px; }
    }
    @media (max-width: 480px) {
      .products-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; gap: 28px; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
    }

    /* Hero logo in h1 */
    .hero h1 img {
      display: inline;
      vertical-align: middle;
      height: 52px;
      border-radius: 10px;
      border: 2px solid rgba(21,128,61,0.2);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-right: 10px;
    }

    /* Product image */
    .product-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .product-card-top {
      height: 160px;
      overflow: hidden;
    }
    /* Row label */
    .products-row-label {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      margin: 46px 0 22px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--green-100);
    }
    .products-row-label:first-child {
      margin-top: 0;
    }
    .topbar-promo { gap: 10px; }
    .promo-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-light); text-transform: uppercase; white-space: nowrap; }
    .promo-sep { color: rgba(255,255,255,0.25); font-size: 11px; }
    /* SVG fallback */
    .svg-fallback {
      display: flex;
      align-items: center;
      justify-content: center;
    }
