:root{
  --bg:#0b1220;
  --card:#0f1a30;
  --text:#eaf0ff;
  --muted:#b7c3e6;
  --brand:#ff6a00;
  --brand2:#1ea7ff;
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:linear-gradient(180deg,var(--bg),#070b14);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(7,11,20,.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 0;gap:14px}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:.2px}
.brand-logo{
  height:64px;
  width:auto;
  display:block;
}
.brand-title{display:flex;flex-direction:column;line-height:1.05}
.brand-title .name{font-size:14px;font-weight:900}
.brand-title .sub{font-size:12px;color:var(--muted);font-weight:700}

.nav-links{display:flex;gap:16px;flex-wrap:wrap}
.nav-links a{opacity:.9}
.nav-links a:hover{opacity:1;color:var(--brand2)}

.hero{padding:56px 0 18px}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:22px;align-items:stretch}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr}}
.h1{font-size:42px;line-height:1.05;margin:0 0 12px}
@media (max-width:520px){.h1{font-size:34px}}
.lead{color:var(--muted);font-size:16px;line-height:1.55;margin:0 0 18px}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0 20px}
.pill{
  border:1px solid var(--border);
  padding:8px 10px;border-radius:999px;
  color:var(--muted);font-size:13px;
  background:rgba(255,255,255,.03);
}

.card{
  background:linear-gradient(180deg,var(--card),rgba(15,26,48,.65));
  border:1px solid var(--border);
  border-radius:16px;padding:18px;
}
.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:11px 14px;border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  font-weight:700;
}
.btn.primary{
  background:linear-gradient(135deg,var(--brand),#ff9b40);
  color:#101828;border:none;
}
.btn.primary:hover{filter:brightness(1.03)}
.btn:hover{border-color:rgba(255,255,255,.22)}
.small{font-size:12px;color:var(--muted)}
.grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0 40px
}
@media (max-width:900px){.grid{grid-template-columns:1fr}}
.tile h3{margin:0 0 6px}
.tile p{margin:0;color:var(--muted);line-height:1.5}
.kpi{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
@media (max-width:900px){.kpi{grid-template-columns:1fr}}
.kpi .box{padding:14px;border-radius:14px;border:1px solid var(--border);background:rgba(255,255,255,.03)}
.kpi b{font-size:18px;display:block;margin-bottom:4px}

.section-title{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-top:24px}
.section-title h2{margin:0}
.section-title p{margin:0;color:var(--muted)}

.footer{
  border-top:1px solid var(--border);
  padding:24px 0;margin-top:26px;color:var(--muted)
}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr}}
input, textarea, select{
  width:100%;padding:11px 12px;border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);outline:none;
}
label{display:block;margin:10px 0 6px;color:var(--muted);font-size:13px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:900px){.form-row{grid-template-columns:1fr}}
.note{font-size:12px;color:var(--muted);margin-top:8px}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  background:rgba(30,167,255,.12);
  border:1px solid rgba(30,167,255,.25);
  color:var(--text);font-size:13px;font-weight:700
}


/* Brand strip */
.brand-strip{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:flex-start;
  margin-top:12px;
}
.brand-strip .brand-card{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.brand-strip img{
  height:36px;
  width:auto;
  display:block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
@media (max-width:520px){
  .brand-strip img{height:30px;}
}

@media (max-width:520px){
  .brand-logo{height:48px;}
}


/* Category hero images */
.cat-hero{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  margin:10px 0 12px;
}
@media (max-width:520px){
  .cat-hero{height:160px;}
}


/* Tile thumbnails */
.tile-thumb{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--border);
  margin:0 0 10px;
}


/* FAQ */
.faq{margin-top:12px}
.faq details{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{margin:8px 0 0;color:var(--muted);line-height:1.55}


.brand-strip{display:flex;flex-wrap:wrap;gap:12px;margin-top:10px}
.brand-card{display:flex;align-items:center;justify-content:center;padding:8px 14px;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:12px}
.brand-card img{height:36px;width:auto;object-fit:contain;display:block}

.brand-strip{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.brand-strip .brand-card{display:flex;align-items:center;justify-content:center;padding:10px 12px;border-radius:14px;border:1px solid var(--border);background:rgba(255,255,255,.03)}


/* --- Added for compliance/mining/supplier pages --- */
.table-wrap{overflow:auto;border:1px solid var(--border);border-radius:16px}
.table{width:100%;border-collapse:separate;border-spacing:0}
.table th,.table td{padding:12px 14px;border-bottom:1px solid var(--border);text-align:left}
.table thead th{background:rgba(255,255,255,.04)}
.table tbody tr:last-child td{border-bottom:none}

.checklist{list-style:none;padding-left:0;margin:0}
.checklist li{position:relative;padding-left:26px;margin:10px 0;line-height:1.55}
.checklist li:before{content:"✓";position:absolute;left:0;top:0;color:var(--accent);font-weight:700}

.form{display:flex;flex-direction:column;gap:10px}
.form input,.form textarea{padding:12px 12px;border-radius:12px;border:1px solid var(--border);background:rgba(255,255,255,.03);color:inherit}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:14px;border:1px solid var(--border);background:rgba(255,255,255,.06);cursor:pointer;font-weight:600}
.btn:hover{background:rgba(255,255,255,.09)}
.pill-row{display:flex;flex-wrap:wrap;gap:10px}
.pill{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.03);font-size:.95rem}


/* Professional homepage redesign */
.hero-pro{
  padding:32px 0 10px;
}
.hero-grid-pro{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width:980px){
  .hero-grid-pro{grid-template-columns:1fr;}
}
.hero-visual{
  position:relative;
  overflow:hidden;
  min-height:520px;
  border-radius:24px;
  border:1px solid var(--border);
  background:#0b1220;
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(6,10,18,.78) 0%, rgba(6,10,18,.38) 45%, rgba(6,10,18,.08) 100%);
}
.hero-copy{
  position:absolute;
  left:28px;
  bottom:26px;
  right:28px;
  max-width:640px;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  font-size:13px;
  color:#fff;
  margin-bottom:12px;
}
.hero-title{
  font-size:46px;
  line-height:1.02;
  letter-spacing:-0.02em;
  margin:0 0 12px;
}
@media (max-width:640px){
  .hero-title{font-size:34px;}
}
.hero-copy p{
  margin:0;
  max-width:560px;
  color:#deebff;
  line-height:1.55;
}
.quote-panel{
  padding:22px;
  border-radius:24px;
}
.quote-panel h3{
  margin:0 0 6px;
  font-size:28px;
}
.quote-panel .sub{
  color:var(--muted);
  margin:0 0 12px;
}
.metric-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
@media (max-width:640px){
  .metric-strip{grid-template-columns:1fr;}
}
.metric{
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  background:rgba(255,255,255,.03);
}
.metric b{
  display:block;
  font-size:22px;
  margin-bottom:4px;
}
.section-intro{
  margin:26px 0 10px;
}
.section-intro h2{
  margin:0 0 8px;
}
.section-intro p{
  margin:0;
  color:var(--muted);
}
.category-grid-pro{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
@media (max-width:1200px){
  .category-grid-pro{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:760px){
  .category-grid-pro{grid-template-columns:1fr 1fr;}
}
@media (max-width:520px){
  .category-grid-pro{grid-template-columns:1fr;}
}
.category-card{
  overflow:hidden;
  border-radius:20px;
}
.category-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid var(--border);
}
.category-card .body{
  padding:16px;
}
.category-card h3{
  margin:0 0 8px;
  font-size:18px;
}
.category-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}
.brand-section{
  margin-top:18px;
}
.brand-strip{
  justify-content:flex-start;
}
.brand-card img{
  height:32px;
}
@media (max-width:520px){
  .brand-card img{height:28px;}
}
.dual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width:860px){
  .dual-grid{grid-template-columns:1fr;}
}
.feature-list{
  list-style:none;
  padding:0;
  margin:0;
}
.feature-list li{
  position:relative;
  padding-left:24px;
  margin:10px 0;
  color:var(--muted);
}
.feature-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--brand);
  font-weight:700;
}
.inline-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.compliance-box{
  margin-top:16px;
}
.compliance-box .pill{
  color:var(--text);
}
.cta-band{
  margin-top:16px;
  padding:20px;
  border-radius:24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.cta-band p{
  margin:0;
  color:var(--muted);
}


/* Banner fit fix */
.hero-grid-pro{
  grid-template-columns:1fr;
}
.hero-visual{
  min-height:auto;
  background:#060a12;
  border-radius:24px;
  overflow:hidden;
}
.hero-visual img{
  width:100%;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  display:block;
}
.hero-overlay{
  display:none !important;
}
.hero-copy{
  position:static !important;
  max-width:none !important;
  padding:20px 0 0 0;
}
.hero-kicker{
  margin-left:0;
}
.quote-panel{
  margin-top:12px;
}
@media (max-width:640px){
  .hero-visual img{
    width:100%;
    height:auto !important;
  }
}
