/* ===== HOME NEW — Fresh Design ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --green: #15803d; --green-dark: #166534; --green-light: #f0fdf4; --text: #1a1a2e; --muted: #64748b; --border: #e2e8f0; --radius: 12px; }

/* ---- Hero ---- */
.hn-hero { position: relative; width: 100%; min-height: 410px; overflow: hidden; background: #ffffff; margin: 0; padding: 3px 0; }
.hn-hero-content { position: relative; z-index: 5; width: 48%; padding: 20px 0 18px 4%; }
.hn-hero-badge { display: inline-block; background: #dcfce7; color: var(--green); font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; letter-spacing: .5px; margin-bottom: 1rem; }
.hn-hero-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: .8rem; }
.hn-hero-highlight { color: var(--green); }
.hn-hero-desc { font-size: .95rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; max-width: 480px; }
.hn-hero-features { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hn-hf-item { display: flex; align-items: center; gap: 8px; }
.hn-hf-icon { width: 32px; height: 32px; border-radius: 50%; background: #dcfce7; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.hn-hf-item strong { font-size: .78rem; color: var(--text); display: block; }
.hn-hf-item span { font-size: .68rem; color: var(--muted); }
.hn-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
/* Hero Visual — full bleed */
.hn-hero-visual { position: absolute; top: 0; right: 0; bottom: 0; width: 54%; overflow: hidden; margin: 0; padding: 0; border: 0; border-radius: 0; }
.hn-hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; margin: 0; padding: 0; border: 0; border-radius: 0; }
.hn-hero-slider { position: relative; width: 100%; height: 100%; }
.hn-hero-slide { display: none; width: 100%; height: 100%; }
.hn-hero-slide.active { display: block; }
.hn-hero-slide img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 0; }
/* Fade breaker */
.hn-hero-visual::before { content: ""; position: absolute; top: 0; bottom: 0; left: -2px; width: 150px; z-index: 2; pointer-events: none; background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.96) 12%, rgba(255,255,255,0.82) 30%, rgba(255,255,255,0.50) 52%, rgba(255,255,255,0.18) 75%, rgba(255,255,255,0) 100%); }

/* Buttons */
.hn-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: .7rem 1.6rem; border-radius: 8px; font-size: .88rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all .2s; }
.hn-btn-primary { background: #1a1a2e; color: #fff; }
.hn-btn-primary:hover { background: #15803d; color: #fff; }
.hn-btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); }
.hn-btn-outline:hover { background: var(--text); color: #fff; }
.hn-btn-outline-sm { background: transparent; color: var(--green); border: 2px solid var(--green); padding: .5rem 1.4rem; font-size: .82rem; border-radius: 8px; }
.hn-btn-outline-sm:hover { background: var(--green); color: #fff; }
.hn-btn-whatsapp { display: inline-flex; align-items: center; gap: 6px; background: #25d366; color: #fff; padding: .55rem 1.2rem; border-radius: 8px; font-size: .8rem; font-weight: 700; text-decoration: none; width: 100%; justify-content: center; }
.hn-btn-whatsapp:hover { background: #1da851; color: #fff; }

/* ---- Trust Strip ---- */
.hn-trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.hn-trust-row { display: flex; justify-content: space-between; padding: 1rem 0; gap: .5rem; flex-wrap: wrap; }
.hn-trust-item { display: flex; align-items: center; gap: 8px; font-size: .78rem; }
.hn-trust-item i { color: var(--green); font-size: 1rem; }
.hn-trust-item strong { display: block; color: var(--text); font-size: .78rem; }
.hn-trust-item span { display: block; color: var(--muted); font-size: .68rem; }

/* ---- Section Head ---- */
.hn-section-head { text-align: center; margin-bottom: 2rem; }
.hn-section-head h2 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 800; color: var(--text); }
.hn-section-head h2 span { color: var(--green); }
.hn-section-head p { font-size: .9rem; color: var(--muted); margin-top: .3rem; }

/* ---- Categories ---- */
.hn-cats { padding: 3rem 0 2rem; }
.hn-cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1rem; }
.hn-cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; text-decoration: none; transition: box-shadow .2s, transform .2s; }
.hn-cat-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.hn-cat-img { width: 100%; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: .6rem; }
.hn-cat-img img { width: 100%; height: 100%; object-fit: contain; }
.hn-cat-placeholder { font-size: 2rem; color: var(--green); }
.hn-cat-card h3 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.hn-cat-card span { font-size: .72rem; color: var(--muted); }
.hn-cats-center { text-align: center; margin-top: 1.5rem; }

/* ---- Products ---- */
.hn-products { padding: 3px 0 3px; background: #f8fafc; }
.hn-prod-wrap { position: relative; }
.hn-prod-list { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0; }
.hn-prod-list::-webkit-scrollbar { display: none; }
.hn-prod-card { min-width: 220px; max-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; transition: box-shadow .2s; }
.hn-prod-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.hn-prod-img { width: 100%; aspect-ratio: 1; background: #f8f9fa; overflow: hidden; }
.hn-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.hn-prod-body { padding: .8rem; }
.hn-prod-body h3 { font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hn-prod-body p { font-size: .72rem; color: var(--muted); margin-bottom: 6px; }
.hn-prod-price { font-size: .95rem; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.hn-prod-link { display: inline-block; font-size: .75rem; font-weight: 700; color: var(--green); text-decoration: none; border: 1px solid var(--green); padding: 4px 12px; border-radius: 6px; transition: all .2s; }
.hn-prod-link:hover { background: var(--green); color: #fff; }
.hn-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: all .2s; }
.hn-arrow:hover { background: var(--green); color: #fff; border-color: var(--green); }
.hn-arrow-left { left: -12px; }
.hn-arrow-right { right: -12px; }

/* ---- Why Choose ---- */
.hn-why { padding: 3px 0; }
.hn-why-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 0.5rem; }
.hn-why-item { text-align: center; padding: 1rem .5rem; }
.hn-why-ico { width: 52px; height: 52px; border-radius: 50%; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto .6rem; }
.hn-why-item strong { display: block; font-size: .82rem; color: var(--text); margin-bottom: 2px; }
.hn-why-item span { font-size: .72rem; color: var(--muted); }

/* ---- Industries ---- */
.hn-industries { padding: 3px 0 3px; background: #f8fafc; }
.hn-ind-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 1rem; }
.hn-ind-item { text-align: center; padding: 1.2rem .5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: all .2s; }
.hn-ind-item:hover { border-color: var(--green); box-shadow: 0 2px 12px rgba(21,128,61,.1); }
.hn-ind-item i { font-size: 1.8rem; color: var(--green); display: block; margin-bottom: .5rem; }
.hn-ind-item span { font-size: .78rem; font-weight: 600; color: var(--text); }

/* ---- Custom Section ---- */
.hn-custom { padding: 3px 0; }
.hn-custom-inner { display: flex; align-items: stretch; background: var(--green-light); border-radius: var(--radius); overflow: hidden; }
.hn-custom-left { padding: 1rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.hn-custom-left h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; line-height: 1.3; }
.hn-custom-list { list-style: none; }
.hn-custom-list li { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text); margin-bottom: .25rem; }
.hn-custom-list i { color: var(--green); font-size: .85rem; }
.hn-custom-mid { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0; }
.hn-custom-slider { width: 100%; height: 100%; }
.hn-cs-track { display: flex; transition: transform .4s ease; height: 100%; }
.hn-cs-slide { min-width: 100%; display: flex; align-items: center; justify-content: center; height: 100%; }
.hn-cs-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hn-cs-dots { display: flex; justify-content: center; gap: 5px; padding: 6px 0 0; }
.hn-cs-dot { width: 7px; height: 7px; border-radius: 50%; background: #ccc; border: none; cursor: pointer; padding: 0; }
.hn-cs-dot.active { background: var(--green); }
.hn-custom-right { flex: 0 0 auto; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 1.2rem 1.8rem; background: #fff; border-left: 3px solid var(--green); }
.hn-custom-right h4 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: .3rem; }
.hn-custom-right p { font-size: .78rem; color: var(--muted); margin-bottom: .6rem; line-height: 1.4; }

/* ---- Process ---- */
.hn-process { padding: 3px 0; background: #f8fafc; }
.hn-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.hn-proc-item { text-align: center; padding: 1.5rem 1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.hn-proc-num { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.hn-proc-ico { width: 48px; height: 48px; border-radius: 50%; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto .8rem; }
.hn-proc-item strong { display: block; font-size: .85rem; color: var(--text); margin-bottom: 4px; }
.hn-proc-item span { font-size: .72rem; color: var(--muted); line-height: 1.4; }

/* ---- Reviews ---- */
.hn-reviews { padding: 3px 0; }
.hn-rev-wrap { position: relative; }
.hn-rev-list { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0; }
.hn-rev-list::-webkit-scrollbar { display: none; }
.hn-rev-card { min-width: 300px; max-width: 300px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; flex-shrink: 0; display: flex; flex-direction: column; height: 200px; }
.hn-rev-stars { color: #facc15; font-size: .85rem; margin-bottom: .5rem; }
.hn-rev-card > p { font-size: .82rem; color: var(--text); line-height: 1.5; margin-bottom: .8rem; font-style: italic; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; flex: 1; }
.hn-rev-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.hn-rev-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; flex-shrink: 0; }
.hn-rev-author strong { display: block; font-size: .82rem; color: var(--text); }
.hn-rev-author span { font-size: .72rem; color: var(--muted); }

/* ---- FAQ + Contact ---- */
.hn-faq-contact { padding: 3px 0; }
.hn-faq-wrap { display: flex; border: 1px solid #e5e7eb; border-radius: 11px; overflow: hidden; align-items: stretch; }
/* Left FAQ */
.hn-faq-left { width: 42%; flex: none; padding: 16px 18px; background: #fff; display: flex; flex-direction: column; overflow: visible; }
.hn-faq-left h3 { font-size: 14px; font-weight: 800; color: #1a1a2e; margin: 0 0 10px; line-height: 1; }
.hn-faq-rows { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.hn-faq-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 10px; border: 1px solid #f0f0f0; border-radius: 4px; cursor: pointer; background: #fafafa; transition: background .15s; }
.hn-faq-row:hover { background: #f0f0f0; }
.hn-faq-row span { font-size: 12px; font-weight: 700; color: #1a1a2e; line-height: 1.3; flex: 1; }
.hn-faq-row i { font-size: 11px; color: #999; margin-left: 8px; flex-shrink: 0; transition: transform .2s; }
.hn-faq-row.open i { transform: rotate(45deg); color: #15803d; }
.hn-faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.hn-faq-row.open + .hn-faq-answer { max-height: 200px; }
.hn-faq-answer p { font-size: 12px; color: #666; line-height: 1.4; padding: 5px 10px 0; margin: 0; }
/* Right CTA */
.hn-faq-right { width: 58%; flex: none; background: #3E5C35; padding: 1px 22px; display: flex; align-items: center; }
.hn-faq-cta-inner { display: flex; gap: 14px; align-items: center; width: 100%; }
.hn-faq-cta-text { flex: 1; min-width: 0; }
.hn-faq-cta-text h4 { font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1.2; }
.hn-faq-cta-text > p { font-size: 14px; color: rgba(255,255,255,.82); margin: 0 0 10px; line-height: 1.35; }
.hn-faq-phone { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.hn-faq-phone-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hn-faq-phone-icon i { font-size: 12px; color: #fff; }
.hn-faq-phone-num { font-size: 16px; font-weight: 800; color: #fff !important; text-decoration: none !important; line-height: 1; display: inline-block; }
.hn-faq-phone-num:hover { color: #fff !important; text-decoration: none !important; }
.hn-faq-phone-time { font-size: 9px; color: rgba(255,255,255,.55); margin-bottom: 10px; display: block; }
.hn-faq-wa-btn { display: inline-flex; align-items: center; gap: 5px; background: #fff; color: #0F5C2D; padding: 5px 16px; border-radius: 4px; font-size: 11px; font-weight: 700; text-decoration: none; width: fit-content; white-space: nowrap; }
.hn-faq-wa-btn i { font-size: 12px; color: #25d366; }
.hn-faq-cta-img { flex: 0 0 220px; display: flex; align-items: center; justify-content: center; padding: 0; }
.hn-faq-cta-img img { width: 220px; height: 180px; object-fit: contain; padding: 0; }
@media(max-width:768px){
    .hn-faq-wrap { flex-direction: column; height: auto; }
    .hn-faq-left, .hn-faq-right { width: 100%; flex: none; }
    .hn-faq-left { padding: 16px; }
    .hn-faq-right { padding: 16px; }
    .hn-faq-cta-inner { flex-direction: column; text-align: center; }
    .hn-faq-phone { justify-content: center; }
    .hn-faq-phone-time { text-align: center; }
    .hn-faq-wa-btn { margin: 0 auto; }
}
.hn-contact-side { flex: 0 0 380px; }
.hn-contact-box { background: var(--green); border-radius: var(--radius); padding: 2rem; color: #fff; }
.hn-contact-box h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .5rem; }
.hn-contact-box > p { font-size: .85rem; opacity: .85; line-height: 1.5; margin-bottom: 1rem; }
.hn-contact-phone { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; margin-bottom: .3rem; }
.hn-contact-time { font-size: .75rem; opacity: .7; margin-bottom: 1.2rem; display: block; }

/* ---- Bottom Trust ---- */
.hn-bottom-trust { border-top: 1px solid var(--border); padding: 3px 0; background: #fff; }
.hn-bt-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.hn-bt-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: var(--text); }
.hn-bt-item i { color: var(--green); font-size: .9rem; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hn-hero { min-height: auto; }
    .hn-hero-content { width: 100%; padding: 16px; text-align: center; }
    .hn-hero-desc { max-width: 100%; }
    .hn-hero-features { justify-content: center; }
    .hn-hero-btns { justify-content: center; }
    .hn-hero-visual { position: relative; width: 100%; height: 260px; top: auto; right: auto; bottom: auto; }
    .hn-hero-visual::before { display: none; }
    .hn-trust-row { justify-content: center; gap: 1rem; }
    .hn-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .hn-why-grid { grid-template-columns: repeat(2, 1fr); }
    .hn-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .hn-process-grid { grid-template-columns: repeat(2, 1fr); }
    .hn-custom-inner { flex-direction: column; }
    .hn-custom-right { flex: none; border-left: none; border-top: 3px solid var(--green); }
    .hn-faq-contact-inner { flex-direction: column; }
    .hn-contact-side { flex: none; }
    .hn-bt-row { justify-content: center; }
}
@media (max-width: 575.98px) {
    .hn-hero-title { font-size: 1.4rem; }
    .hn-hero-visual { height: 230px; }
    .hn-cats-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
    .hn-why-grid { grid-template-columns: repeat(2, 1fr); }
    .hn-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .hn-process-grid { grid-template-columns: 1fr; }
    .hn-prod-card { min-width: 180px; max-width: 180px; }
    .hn-rev-card { min-width: 260px; max-width: 260px; }
    .hn-trust-row { gap: .8rem; }
    .hn-trust-item { flex: 0 0 calc(50% - .5rem); }
}
