﻿:root {
  --forest: #052f1d;
  --forest-2: #0a3d25;
  --leaf: #15a05b;
  --lime: #8eea68;
  --gold: #f6c84c;
  --cream: #fff4cc;
  --mist: #c9d9d0;
  --muted: #91aaa0;
  --night: #04100a;
  --panel: rgba(10, 35, 23, 0.84);
  --line: rgba(246, 200, 76, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #f7fbf2;
  background:
    radial-gradient(circle at 12% 6%, rgba(17, 167, 89, 0.28), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(246, 200, 76, 0.16), transparent 28rem),
    linear-gradient(135deg, #06110c 0%, #07170f 46%, #020604 100%);
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  left: -20vw;
  bottom: -30vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(142,234,104,0.12), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 28px), var(--max));
  overflow: hidden;
  border: 1px solid rgba(246,200,76,0.28);
  border-radius: 28px;
  background: rgba(5, 47, 29, 0.84);
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  backdrop-filter: blur(14px);
  transition: top 220ms ease, width 220ms ease, border-radius 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.top-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 14px;
  border-bottom: 1px solid rgba(246,200,76,0.22);
  background: linear-gradient(90deg, rgba(246,200,76,0.16), rgba(17,167,89,0.12));
  color: #fff7d6;
  font-size: 0.7rem;
  font-weight: 900;
}
.top-contact-strip strong { color: var(--gold); letter-spacing: 0.02em; white-space: nowrap; }
.top-contact-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.top-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(2,10,7,0.34);
  color: #fff;
}
.nav-wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 58px; padding: 8px 10px 8px 16px; transition: min-height 220ms ease, padding 220ms ease; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 110px; height: auto; filter: drop-shadow(0 7px 18px rgba(0,0,0,0.4)); transition: width 220ms ease; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { color: var(--cream); font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; }
.brand-copy span { color: var(--mist); font-size: 0.78rem; }
.menu { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3px; }
.menu a {
  padding: 8px 8px;
  border-radius: 999px;
  color: #edf7ef;
  font-size: 0.7rem;
  font-weight: 900;
}
.menu a:hover, .menu a:focus-visible, .menu a[aria-current="page"] { background: rgba(246,200,76,0.16); color: #fff7d6; outline: none; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}
.header-cta { min-height: 38px; padding: 0 14px; font-size: 0.8rem; }
.header-cta, .btn-primary { background: linear-gradient(135deg, var(--gold), #ffb347); color: #122416; box-shadow: 0 14px 30px rgba(246,200,76,0.22); }
.compact-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(246,200,76,0.32);
  border-radius: 13px;
  background: rgba(2,10,7,0.42);
  color: #fff7d6;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.compact-menu-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.compact-menu-toggle span + span { margin-top: 4px; }
.compact-menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.site-header.is-compact {
  top: 10px;
  overflow: visible;
  width: min(calc(100% - 20px), var(--max));
  border-radius: 21px;
  background: rgba(5, 47, 29, 0.92);
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}
.site-header.is-compact .top-contact-strip,
.site-header.is-compact .brand-copy,
.site-header.is-compact .header-cta { display: none; }
.site-header.is-compact .nav-wrap {
  min-height: 48px;
  padding: 6px 8px 6px 11px;
  flex-direction: row;
  align-items: center;
}
.site-header.is-compact .brand img { width: 74px; }
.site-header.is-compact .compact-menu-toggle { display: inline-flex; flex: 0 0 auto; }
.site-header.is-compact .compact-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-compact .compact-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header.is-compact .compact-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-header.is-compact .menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 3;
  display: grid;
  width: min(300px, calc(100vw - 38px));
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(246,200,76,0.28);
  border-radius: 16px;
  background: rgba(5, 35, 23, 0.97);
  box-shadow: 0 18px 44px rgba(0,0,0,0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.site-header.is-compact.is-menu-open .menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.site-header.is-compact .menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.82rem;
}
.btn-secondary { background: rgba(255,255,255,0.08); color: #fff9df; border-color: rgba(246,200,76,0.28); }
.hero { position: relative; isolation: isolate; overflow: hidden; padding: 190px 0 70px; background: #06110c; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(2, 10, 7, 0.94), rgba(5, 47, 29, 0.78) 48%, rgba(2, 10, 7, 0.46)), radial-gradient(circle at 80% 20%, rgba(246,200,76,0.18), transparent 22rem); pointer-events: none; }
.hero-slider { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg-slide { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0; transform: scale(1.05); transition: opacity 900ms ease, transform 6500ms ease; }
.hero-bg-slide.is-active { opacity: 1; transform: scale(1); }
.hero-bg-slide:nth-child(1) { background-image: url("../image/slider.jpg"); }
.hero-bg-slide:nth-child(2) { background-image: url("../image/slider2.jpg"); }
.hero-bg-slide:nth-child(3) { background-image: url("../image/slider3.jpg"); }
.hero-bg-slide:nth-child(4) { background-image: url("../image/slider4.jpg"); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr); gap: 28px; align-items: center; }
.eyebrow { display: inline-flex; margin-bottom: 12px; color: var(--gold); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3 { color: #fff9df; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -0.025em; }
h1 { margin: 0; font-size: clamp(2.15rem, 4.7vw, 4.45rem); }
h1 span, h2 span { color: var(--gold); }
h2 { margin: 0; font-size: clamp(1.65rem, 3.2vw, 2.7rem); }
h3 { margin: 0 0 10px; font-size: 1.24rem; }
p { color: var(--mist); }
.hero-text { max-width: 760px; font-size: clamp(1rem, 1.35vw, 1.14rem); color: #e5f2e9; }
.hero-actions, .cta-actions, .footer-cta-row, .mini-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero-card, .info-card, .feature-card, .faq-card, .product-card, .link-card, .footer-card, .quote-panel, .spec-card, .keyword-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16,43,29,0.86), rgba(5,18,12,0.9));
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}
.hero-card { padding: 24px; }
.hero-card img { width: 170px; margin-bottom: 18px; }
.hero-card ul, .check-list, .spec-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.hero-card li, .check-list li, .spec-list li { padding: 12px 14px; border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; background: rgba(2,10,7,0.44); color: #edf7ef; }
.section-pad { padding: 62px 0; }
.section-heading { max-width: 840px; margin-bottom: 24px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.info-card, .feature-card, .faq-card, .product-card, .link-card, .quote-panel, .spec-card, .keyword-card { padding: 22px; }
.icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 14px; border: 1px solid rgba(246,200,76,0.32); border-radius: 15px; background: rgba(246,200,76,0.12); color: var(--gold); font-size: 1.2rem; }
.cta-band { position: relative; overflow: hidden; padding: 28px; border: 1px solid rgba(246,200,76,0.34); border-radius: var(--radius-xl); background: radial-gradient(circle at 95% 0%, rgba(246,200,76,0.18), transparent 18rem), linear-gradient(135deg, rgba(13,66,39,0.95), rgba(5,18,12,0.94)); box-shadow: var(--shadow); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; }
.price-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.price-grid.has-six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.price-card { border: 1px solid rgba(142,234,104,0.24); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(21,89,53,0.72), rgba(5,18,12,0.9)); padding: 18px; box-shadow: 0 14px 34px rgba(0,0,0,0.2); }
.price-card h3 { font-family: "Trebuchet MS", "Gill Sans", sans-serif; font-size: 1rem; letter-spacing: -0.01em; }
.price-card strong { display: block; margin-top: 8px; color: var(--lime); font-size: 1.38rem; line-height: 1.1; }
.price-card span { color: #dcecdf; font-size: 0.86rem; font-weight: 900; }
.delivery-note { margin-top: 18px; padding: 14px 16px; border: 1px solid rgba(246,200,76,0.28); border-radius: var(--radius-md); background: rgba(246,200,76,0.08); color: #fff7d6; font-weight: 900; }
.content-flow { display: grid; gap: 18px; }
.content-flow p { margin: 0; }
.product-image { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid rgba(246,200,76,0.22); background: rgba(2,10,7,0.54); }
.product-image img { width: 100%; min-height: 320px; object-fit: cover; }
.spec-list strong { color: var(--gold); display: block; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 12px 0 0; list-style: none; }
.keyword-list li { padding: 9px 11px; border: 1px solid rgba(246,200,76,0.24); border-radius: 999px; background: rgba(246,200,76,0.08); color: #fff7d6; font-weight: 900; }
.footer-quote-card { width: min(calc(100% - 32px), var(--max)); margin: 22px auto 0; }
.footer-quote-form { display: grid; gap: 12px; margin-top: 14px; }
.footer-quote-form label, .footer-quote-form fieldset { display: grid; gap: 6px; margin: 0; border: 0; padding: 0; color: #f4f7ed; font-size: 0.88rem; font-weight: 900; }
.footer-quote-form input, .footer-quote-form select, .footer-quote-form textarea { width: 100%; min-height: 42px; border: 1px solid rgba(255,255,255,0.14); border-radius: 13px; background: rgba(2,10,7,0.72); color: #fff; font: inherit; padding: 10px 12px; }
.footer-quote-form textarea { min-height: 78px; resize: vertical; }
.footer-quote-form .method-row { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-quote-form .method-row label { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 10px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(2,10,7,0.5); }
.footer-quote-form input[type="radio"] { width: auto; min-height: auto; accent-color: var(--gold); }
.form-note { margin: 0; color: var(--muted); font-size: 0.82rem; }
.quote-panel { display: grid; gap: 12px; }
.quote-panel a, .link-card a { color: #fff4cc; font-weight: 950; word-break: break-word; }
.related-list { display: flex; flex-wrap: wrap; gap: 10px; }
.related-list a { padding: 10px 12px; border: 1px solid rgba(246,200,76,0.24); border-radius: 999px; background: rgba(255,255,255,0.06); color: #fff9df; font-weight: 900; }
.faq-grid { display: grid; gap: 14px; }
.faq-card p { margin-bottom: 0; }
.site-footer { padding: 64px 0 28px; border-top: 1px solid rgba(246,200,76,0.18); background: linear-gradient(180deg, rgba(2,8,5,0.12), rgba(2,8,5,0.72)); }
.footer-grid { display: grid; gap: 22px; }
.footer-top { display: grid; grid-template-columns: minmax(280px, 1.35fr) minmax(260px, 1fr) minmax(190px, 0.75fr) minmax(210px, 0.85fr); gap: 18px; align-items: stretch; }
.footer-card { padding: 22px; }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { width: 148px; flex: 0 0 auto; }
.footer-kicker { display: inline-flex; margin-bottom: 8px; color: var(--gold); font-size: 0.76rem; font-weight: 950; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.footer-pill { display: inline-flex; align-items: center; min-height: 30px; padding: 0 10px; border: 1px solid rgba(246,200,76,0.26); border-radius: 999px; background: rgba(246,200,76,0.08); color: var(--gold); font-size: 0.8rem; font-weight: 950; }
.footer-detail-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-detail-row { display: grid; gap: 3px; padding: 12px; border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; background: rgba(2,10,7,0.46); color: #edf7ef; }
.footer-detail-row strong { color: var(--gold); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-link-list { display: grid; gap: 9px; }
.footer-link-list a, .footer-detail-row a, .footer-bottom a { color: #fff7d6; font-weight: 950; word-break: break-word; }
.footer-note { color: #a9beb4; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; border: 1px solid rgba(246,200,76,0.16); border-radius: var(--radius-md); background: rgba(2,10,7,0.55); padding: 14px 16px; color: #a9beb4; }
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: grid; gap: 10px; }
.float-btn { display: flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(246,200,76,0.32); background: rgba(5,47,29,0.9); color: #fff9df; box-shadow: 0 12px 34px rgba(0,0,0,0.28); font-weight: 950; }
.float-btn.whatsapp { background: linear-gradient(135deg, #10a85a, #0a6f3c); }
.float-btn.call { background: linear-gradient(135deg, #f6c84c, #ffad3b); color: #102416; }
.float-btn.email { background: rgba(9, 40, 27, 0.94); }
.reveal { animation: rise 700ms ease both; }
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 220ms; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1080px) { .price-grid.has-six { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 980px) {
  .top-contact-strip, .nav-wrap { align-items: flex-start; flex-direction: column; }
  .top-contact-links, .menu { justify-content: flex-start; }
  .header-cta { display: none; }
  .hero { padding-top: 260px; }
  .hero-grid, .grid-2, .grid-3, .cta-grid, .footer-top, .price-grid, .price-grid.has-six { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .brand-copy { display: none; }
  .top-contact-strip { font-size: 0.68rem; }
  .hero { padding-top: 300px; }
  .section-pad { padding: 42px 0; }
  .cta-band { padding: 22px; }
  .float-actions { left: 12px; right: 12px; grid-template-columns: repeat(3, 1fr); }
  .float-btn { justify-content: center; padding: 0 10px; font-size: 0.76rem; }
  .float-btn span:first-child { display: none; }
}
