*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c878;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --dark4: #242424;
  --text: #e8e8e8;
  --text-muted: #888;
  --red: #e05252;
  --green: #52c97a;
  --border: rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Playfair+Display:wght@700;900&display=swap');

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.15);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 0 4%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.nav-left { display: flex; align-items: center; }
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo-img {
  height: 32px; width: auto; display: block;
}
.nav-logo-img { display: block !important; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: none;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
  justify-content: center;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: color 0.3s; padding: 4px 0; position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Right side: phone + WhatsApp */
.nav-right {
  display: flex; align-items: center; gap: 1rem;
}
.nav-phone {
  color: var(--text-muted); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; white-space: nowrap; letter-spacing: 0.5px;
  transition: color 0.3s; display: flex; align-items: center; gap: 6px;
}
.nav-phone:hover { color: var(--text); }
.nav-phone::before { content: '📞'; font-size: 0.75rem; }
.nav-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25d366; color: #fff; padding: 8px 16px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none; white-space: nowrap;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-wa:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.nav-mobile-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; grid-column: 3; }
.nav-mobile-btn span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 0; border-radius: 2px; transition: all 0.3s; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 130px 5% 70px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.page-header .label {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1rem;
}
.page-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; font-weight: 300; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ── SECTIONS ── */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 0.75rem;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 580px; font-weight: 300; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; padding: 13px 30px; border-radius: 3px;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--border); color: var(--text);
  padding: 13px 30px; border-radius: 3px;
  font-weight: 500; font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.85rem; text-decoration: none;
  font-weight: 600; letter-spacing: 0.5px; transition: gap 0.3s;
}
.btn-ghost:hover { gap: 10px; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  color: var(--gold); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

.stock-badge-out {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
  background: rgba(224,82,82,0.12); color: var(--red);
  border: 1px solid rgba(224,82,82,0.25);
}
.stock-badge-in {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
  background: rgba(82,201,122,0.12); color: var(--green);
  border: 1px solid rgba(82,201,122,0.25);
}

/* ── PRODUCT IMAGE PLACEHOLDER ── */
.product-img-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem;
  background: var(--dark4); border: 1px dashed rgba(201,168,76,0.25);
}
.product-img-wrap--card {
  aspect-ratio: 16/9; border-radius: 6px 6px 0 0;
  margin: -2.2rem -2.2rem 1.5rem -2.2rem; /* bleed to card edges */
  border-radius: 0; border-left: none; border-right: none; border-top: none;
}
.product-img-full-fix { width:100%; height:100%; object-fit: contain; display:block; }
.product-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.product-card:hover .product-img { transform: scale(1.01); }
.product-img-fallback {
  position: absolute; inset: 0;
  display: none; /* shown by onerror */
  align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: var(--dark4);
}
.product-img-fallback--card { font-size: 3rem; }

/* Detail page visual */
.product-visual .product-img-wrap { 
  width: 100%; aspect-ratio: 16/9; margin: 0;
  border-radius: 8px;
}
.product-visual .product-img { object-fit: contain; background: #0d0d0d; }
.product-visual .product-img-fallback { font-size: 8rem; }

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.product-card {
  background: var(--dark2); padding: 2.2rem;
  display: flex; flex-direction: column;
  transition: background 0.3s; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover { background: var(--dark3); }
.product-card:hover::before { opacity: 1; }
.product-cat {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.2rem; font-weight: 600;
}
.product-icon {
  width: 56px; height: 56px; margin-bottom: 1.2rem;
  background: rgba(201,168,76,0.08); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.product-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.35; }
.product-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 1.2rem; }
.product-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.product-vol {
  font-size: 0.75rem; background: rgba(255,255,255,0.05);
  padding: 4px 10px; border-radius: 50px; color: var(--text-muted);
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--border-soft);
}
.product-price {
  font-size: 1.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-family: 'Playfair Display', serif;
}
.product-price .cur {
  font-size: 0.85rem; font-family: 'Inter', sans-serif; font-weight: 400;
  color: var(--text-muted); -webkit-text-fill-color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  letter-spacing: 4px; text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ── HERO (index) ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 5% 80px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 60%),
              var(--dark);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { max-width: 660px; position: relative; z-index: 1; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -1px; margin: 1.2rem 0 1.2rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.1rem; color: var(--text-muted); font-weight: 300; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat-item { }
.stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 3rem;
}
.feature-card {
  background: var(--dark3); padding: 2.2rem;
  border-top: none; transition: background 0.3s;
}
.feature-card:hover { background: var(--dark4); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* ── FILTER TABS ── */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 0;
}
.filter-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 18px; border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.78rem; color: var(--text-muted); cursor: pointer;
  transition: all 0.3s; background: transparent; letter-spacing: 0.5px; font-family: 'Inter', sans-serif;
}
.filter-tab.active, .filter-tab:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08);
}
.products-count { font-size: 0.82rem; color: var(--text-muted); }
.products-count strong { color: var(--text); }

/* ── PRODUCT DETAIL ── */
.product-detail { padding: 60px 5% 100px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.product-visual {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 8px; aspect-ratio: 1/1; max-width: 480px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; position: sticky; top: 100px;
}
.product-info { }
.product-info .product-cat { display: block; margin-bottom: 1rem; }
.product-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.2;
  margin-bottom: 1.5rem;
}
.product-info .price-block { margin-bottom: 2rem; }
.product-info .price-main {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.product-info .price-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.product-attrs { margin-bottom: 2rem; }
.product-attr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
}
.product-attr:first-child { border-top: 1px solid var(--border-soft); }
.product-attr .key { color: var(--text-muted); }
.product-attr .val { font-weight: 600; }

.notify-form { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.notify-input {
  flex: 1; background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); padding: 12px 16px; border-radius: 3px;
  font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.3s;
}
.notify-input:focus { border-color: var(--gold); }
.notify-input::placeholder { color: var(--text-muted); }
.notify-btn {
  background: var(--dark3); border: 1px solid var(--border);
  color: var(--gold); padding: 12px 20px; border-radius: 3px;
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  letter-spacing: 0.5px; transition: all 0.3s; font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.notify-btn:hover { background: rgba(201,168,76,0.12); }

.product-description { margin-top: 2.5rem; }
.product-description h3 { font-size: 0.88rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; color: var(--text-muted); }
.product-description p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }

.product-steps { counter-reset: step; margin-top: 1rem; }
.step {
  display: flex; gap: 1rem; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft); font-size: 0.88rem;
  color: var(--text-muted); align-items: flex-start;
}
.step-num {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(201,168,76,0.12); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: var(--gold);
}

/* ── TECH TABLE ── */
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table th {
  text-align: left; font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.tech-table th:last-child { text-align: right; }
.tech-table td { padding: 0.9rem 0; border-bottom: 1px solid var(--border-soft); font-size: 0.92rem; }
.tech-table td:last-child { color: var(--gold); font-weight: 600; text-align: right; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text); padding: 13px 16px; border-radius: 3px;
  font-size: 0.92rem; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.3s; width: 100%;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }
.form-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; padding: 15px; border: none; border-radius: 3px;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }

/* ── RELATED PRODUCTS ── */
.related { background: var(--dark2); }
.related .products-grid { margin-top: 2.5rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li {
  padding: 0.85rem 0; border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: flex-start; gap: 1rem; font-size: 0.92rem;
}
.about-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.cert-box { background: var(--dark3); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; }
.cert-box h4 { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; }
.cert-item {
  padding: 0.85rem 0; border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 1rem; font-size: 0.88rem;
}
.cert-item:last-child { border: none; }
.cert-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.cert-item p { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-visual { position: static; max-width: 100%; aspect-ratio: 3/2; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  nav { padding: 0 4%; grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 2rem 5%; border-bottom: 1px solid rgba(201,168,76,0.08); z-index: 99; }
  .nav-right { display: none; }
  .nav-mobile-btn { display: flex; flex-direction: column; justify-content: center; gap: 5px; }
  section { padding: 60px 4%; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .notify-form { flex-direction: column; }
}
