:root {
  --bg: #fffefb;
  --text: #1b1b1b;
  --muted: #6b6b6b;
  --primary: #116149;
  --wa: #25D366;
  --container: 1100px;
  /* Global font scale */
  --fs-body: clamp(16px, 1.6vw, 18px);
  --fs-h1: clamp(28px, 6vw, 56px);
  --fs-h2: clamp(22px, 3.2vw, 32px);
  --fs-h3: clamp(18px, 2.6vw, 24px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif; color: var(--text); background: var(--bg); text-align: center; font-size: var(--fs-body); line-height: 1.7; }
h1, h2, h3, p { margin: 0 0 12px; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.topbar { background: #0f4938; color: #fff; font-size: 14px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 40px; }
.tb-right { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; justify-content: flex-end; }
.tb-social { display: inline-flex; align-items:center; gap: 8px; }
.tb-social a { color: #fff; opacity: .9; display: inline-flex; align-items:center; justify-content:center; width: 28px; height: 28px; }
.tb-social a:hover { opacity: 1; }
.tb-link { color: #fff; text-decoration: underline; opacity: .95; }
.tb-actions .btn-sm { padding: 6px 10px; border-radius: 8px; font-weight: 700; font-size: 13px; }
.tb-actions .btn-sm.primary { background: var(--primary); color:#fff; border: 0; }
.tb-actions .btn-sm.wa { background: var(--wa); color:#fff; border: 0; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); border-bottom: 1px solid #eee; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display:flex; align-items:center; gap:8px; font-weight: 700; letter-spacing: 0.3px; }
.brand img { height: 44px; }
.drawer-header img { height: 44px; }
.menu-btn { background: none; border: 0; font-size: 24px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.menu-btn { color: var(--primary); padding: 6px 8px; border-radius: 8px; }
.menu-btn:active { transform: translateY(1px); }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); backdrop-filter: blur(2px); z-index: 70; }
.drawer { position: fixed; top: 0; bottom: 0; left: 0; width: min(90vw, 320px); background: #fff; z-index: 80; transform: translateX(-100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: 16px; gap: 16px; text-align: left; }
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; }
.drawer-close { background: none; border: 0; font-size: 20px; }
.drawer-nav { display: grid; gap: 12px; margin: 8px 0; }
.drawer-nav a { color: var(--text); text-decoration: none; font-weight: 600; text-align: left; padding: 6px 0; }
.drawer-contact { display: flex; gap: 8px; }
.drawer-social { display: flex; gap: 10px; color: var(--primary); }
.drawer-social a svg { color: var(--primary); fill: var(--primary); }
.nav a { color: var(--text); text-decoration: none; margin-left: 16px; font-weight: 600; }
.hero { position: relative; text-align: center; }
.slider { position: relative; overflow: hidden; }
.slides { display: flex; touch-action: pan-y; will-change: transform; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.slide { min-width: 100%; height: clamp(420px, 75vh, 820px); position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 100%); pointer-events: none; z-index: 1; }
.overlay { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; padding: 0 16px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.35); z-index: 2; background: none; }
.overlay h1 { margin: 0 0 6px; font-size: clamp(28px, 6vw, 56px); line-height: 1.1; }
.overlay p { margin: 0 0 12px; font-size: clamp(16px, 2.5vw, 20px); }
.usp-badges { list-style: none; padding: 0; margin: 0 0 20px; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.usp-badges li { background: rgba(0,0,0,.35); padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: 13px; }
.slide-caption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; color:#fff; text-shadow: 0 2px 8px rgba(0,0,0,.35); padding: 0 16px; z-index: 2; }
.slide-caption h1 { margin: 0 0 6px; font-size: var(--fs-h1); }
.slide-caption p { margin: 0; font-size: clamp(14px, 2.5vw, 18px); }
@media (max-width: 767px) { .hero .overlay .cta-group { display: none; } }
.slider .prev, .slider .next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: 0; width: 40px; height: 40px; border-radius: 999px; cursor: pointer; }
.slider .prev { left: 12px; }
.slider .next { right: 12px; }
.slider .dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 8px; justify-content: center; }
.slider .dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.7); }
.slider .dots button.active { background: #fff; }
.cta-group { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: .2s ease; border: 1px solid transparent; }
.btn.primary { background: var(--primary); color: white; }
.btn.wa { background: var(--wa); color: white; }
.section { padding: 64px 0; }
.section h2 { margin: 0 0 24px; font-size: var(--fs-h2); text-align: center; }
/* Reduce gap between hero and the next section */
.hero + .section { padding-top: 32px; }
.about .about-content { max-width: 800px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }
.about .container { text-align: center; }
.about .about-content { text-align: center; }
.about .about-content p { text-align: center; margin-left: auto; margin-right: auto; }
.why .container { text-align: center; }
.why .why-item { text-align: center; }
.alt { background: linear-gradient(180deg, rgba(17,97,73,.05) 0%, rgba(17,97,73,.12) 100%); }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card { padding: 16px; border: 1px solid #eee; border-radius: 12px; background: white; text-align: center; }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.products .container { text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 12px; max-width: 1100px; margin: 0 auto; }
.product-card .title { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.product-card .title svg { opacity: .8; }
.product-card .desc { margin-top: 4px; }
.product-card .pkg { margin-top: 8px; font-size: 14px; }
.product-card .btn-sm { margin-top: 12px; display: inline-block; }
.product-card .thumb { width: 100%; height: 160px; border-radius: 10px; overflow: hidden; margin-bottom: 10px; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.why .why-item small { color: var(--muted); display:block; }
.gallery-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:12px; }
.gallery-grid img { width:100%; height: 160px; object-fit: cover; border-radius: 10px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.accordion .item { border: 1px solid #e0e0e0; border-radius: 12px; background: #fff; overflow: hidden; }
.accordion .q { width: 100%; text-align: center; background: transparent; border: 0; padding: 14px 16px; font-weight: 700; cursor: pointer; position: relative; }
.accordion .q::after { content: "▾"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%) rotate(0deg); transition: transform .3s ease; }
.accordion .a { height: 0; overflow: hidden; padding: 0 16px; color: var(--muted); background: #fff; text-align: center; border-top: 1px solid #f0f0f0; transition: height .3s ease, padding .3s ease, opacity .2s ease; will-change: height; opacity: 0; }
.accordion .item.open .a { padding: 12px 16px; opacity: 1; }
.accordion .item.open .q::after { transform: translateY(-50%) rotate(180deg); }
.site-footer { padding: 24px 0; border-top: 1px solid #eee; color: var(--muted); text-align: center; }
.site-footer h3 { margin: 8px 0; color: var(--text); }
.site-footer .footer-social { display: flex; gap: 10px; justify-content: center; margin: 12px 0; }
.site-footer .footer-social .ig svg { color: var(--primary); fill: var(--primary); }
.site-footer .legal a { color: var(--text); text-decoration: underline; }
.site-footer a { color: var(--primary); }
.footer-grid { display: grid; gap: 16px; align-items: center; text-align: center; }
.f-brand img { height: 72px; width: auto; }
.f-col h4 { margin: 0 0 12px; color: var(--text); font-size: var(--fs-h3); }
.quick-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.quick-links a { color: var(--text); text-decoration: none; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; text-align: center; } .site-footer .footer-social { justify-content: center; } .f-brand img { height: 84px; } }
.contact p { text-align: center; }
.faq { background: linear-gradient(180deg, rgba(17,97,73,.06) 0%, rgba(17,97,73,.14) 100%); }
.faq.section { padding: 72px 0; }
.faq .container { max-width: 900px; }
.faq h2 { font-size: var(--fs-h2); margin-bottom: 28px; }
.faq .accordion { display: grid; gap: 16px; }
.faq .accordion .q { font-size: var(--fs-h3); line-height: 1.3; }
.faq .accordion .a { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.8; }

@media (prefers-reduced-motion: reduce) {
  .accordion .q::after { transition: none; }
  .accordion .a { transition: none; }
}
.b2b .b2b-list { list-style: none; padding: 0; margin: 16px auto 0; display: grid; gap: 8px; max-width: 720px; }
.b2b .b2b-list li { padding: 10px 12px; border: 1px dashed #e0e0e0; border-radius: 10px; background: #fff; display: inline-block; }
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 12px calc(env(safe-area-inset-bottom) + 8px); background: transparent; border-top: 0; }
.mobile-cta a { display: inline-block; text-align: center; background: var(--primary); color: white; padding: 12px 0; border-radius: 12px; text-decoration: none; font-weight: 700; border: 0; box-shadow: 0 6px 16px rgba(0,0,0,.15); }
.mobile-cta a:last-child { background: var(--wa); }
/* Back to top */
#back-to-top { position: fixed; right: 16px; bottom: calc(env(safe-area-inset-bottom) + 84px); width: 44px; height: 44px; border-radius: 999px; background: var(--primary); box-shadow: 0 6px 16px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
#back-to-top.show { opacity: 1; pointer-events: auto; }
#back-to-top::before { content: "▲"; color: #fff; display: grid; place-items: center; width: 100%; height: 100%; font-size: 16px; }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(4, 1fr); } .mobile-cta { display: none; } .hero { text-align: center; } .card { text-align: center; } .why .why-grid { grid-template-columns: repeat(3, 1fr); } .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } .section { padding: 96px 0; } .hero + .section { padding-top: 48px; } .brand img { height: 56px; } .site-header .container { height: 88px; } }
@media (min-width: 768px) { .menu-btn { display: none; } }
@media (max-width: 767px) { .nav { display: none; } }

body.no-scroll { overflow: hidden; }

/* Mobile sizing for logo and hamburger */
@media (max-width: 767px) {
  .brand img { height: 52px; }
  .drawer-header img { height: 52px; }
  .site-header .container { height: 88px; }
  .menu-btn { font-size: 30px; padding: 8px 10px; }
}

/* Mobile: hide topbar action buttons */
@media (max-width: 767px) { .topbar .tb-actions { display: none; } }
/* Prevent mobile CTA from covering footer legal text */
@media (max-width: 767px) { .site-footer { padding-bottom: 120px; } }
@media (max-width: 767px) {
  .topbar .tb-left { flex: 1 1 100%; display: flex; justify-content: center; }
  .topbar .tb-msg { text-align: center; }
}
