:root {
  --bg: #120f20;
  --bg-soft: #21183c;
  --text: #f8f4ff;
  --muted: #b9add2;
  --accent: #ff7a59;
  --accent-strong: #ff5e2f;
  --card: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg), #22153d 55%, #3c2b64);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
.hero { padding: 24px 24px 84px; background: radial-gradient(circle at top right, rgba(255, 122, 89, 0.22), transparent 32%); }
.navbar { max-width: 1160px; margin: 0 auto 40px; display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.2rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 18px; }
.nav-link { color: var(--muted); font-weight: 600; }
.hero-content { max-width: 1160px; margin: 0 auto; padding-top: 16px; display: grid; gap: 24px; grid-template-columns: 1.4fr 0.9fr; align-items: center; }
.eyebrow { margin: 0 0 10px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); }
h1,h2,h3 { margin-top: 0; }
h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.1; margin-bottom: 16px; }
.hero-text { max-width: 680px; color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.button { display: inline-block; padding: 12px 20px; border-radius: 999px; font-weight: 700; }
.button.primary { background: var(--accent); color: #29120a; }
.button.secondary { border: 1px solid var(--border); color: var(--text); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; }
.hero-stats div { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.hero-stats strong { color: var(--accent); font-size: 1.1rem; }
.hero-stats span { color: var(--muted); font-size: 0.95rem; }
.hero-card, .info-card, .process-card, .contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 24px; }
.section { max-width: 1160px; margin: 0 auto; padding: 48px 24px 72px; }
.feature-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; padding-top: 20px; }
.section-heading { margin-bottom: 24px; }
.section-heading h2 { font-size: 1.75rem; margin-bottom: 0; }
.product-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.search-box input { width: 280px; padding: 12px 14px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,0.06); color: var(--text); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-pill { border: 1px solid var(--border); background: transparent; color: var(--text); border-radius: 999px; padding: 8px 14px; cursor: pointer; font-weight: 600; }
.filter-pill.active { background: var(--accent); color: #2a1409; border-color: var(--accent); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.product-card { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); background: var(--card); transition: transform 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(255, 122, 89, 0.35); }
.product-card a { display: flex; flex-direction: column; height: 100%; }
.product-card img { height: 300px; object-fit: cover; object-position: center; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body p { color: var(--muted); margin: 0; }
.card-body span { color: var(--accent); font-weight: 700; }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.process-card span { display: inline-block; margin-bottom: 12px; color: var(--accent); font-weight: 800; font-size: 1.05rem; }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; background: rgba(255,255,255,0.06); color: var(--text); }
.contact-form button { border: none; padding: 12px 16px; border-radius: 999px; background: var(--accent); color: #2a1409; font-weight: 700; cursor: pointer; }
.footer { padding: 0 24px 40px; text-align: center; color: var(--muted); }
.detail-shell { max-width: 1100px; margin: 0 auto; padding: 24px 24px 64px; }
.back-link { display: inline-flex; margin-bottom: 20px; color: var(--accent); font-weight: 700; }
.detail-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; margin-bottom: 24px; }
.detail-image img { border-radius: 28px; border: 1px solid var(--border); height: 480px; object-fit: cover; }
.detail-content p { color: var(--muted); }
.detail-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.detail-features span { padding: 8px 12px; border-radius: 999px; background: rgba(255, 122, 89, 0.16); color: var(--accent); font-size: 0.92rem; }
.detail-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 24px; }
.detail-card ul { padding-left: 18px; color: var(--muted); }
.empty-state { color: var(--muted); padding: 24px 0; }
@media (max-width: 900px) { .hero-content, .detail-hero, .detail-sections, .product-grid, .feature-strip, .process-grid, .contact-card { grid-template-columns: 1fr; } .product-toolbar { flex-direction: column; align-items: stretch; } .search-box input { width: 100%; } }
