/* AGM GROUP — Catalog Website (Light Theme) */

:root{
  --bg: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef2ff;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --border: #e2e8f0;
  --accent: #2563eb;
  --accent-2: #0ea5e9;
  --success: #16a34a;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, #e0f2fe 0%, rgba(224,242,254,0) 55%),
              radial-gradient(1000px 500px at 95% 0%, #eef2ff 0%, rgba(238,242,255,0) 55%),
              var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--accent); }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(226,232,240,0.7);
}

.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand img{ height: 34px; width: auto; display: block; }

.nav{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a.active, .nav a:hover{
  color: var(--text);
  background: rgba(226,232,240,0.6);
}

.nav-cta{
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 700;
  color: var(--text);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15,23,42,0.08);
}

.btn-primary{
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-color: transparent;
  color: white;
}

.btn-primary:hover{
  box-shadow: 0 12px 24px rgba(37,99,235,0.22);
}

.btn-ghost{
  background: transparent;
}

.icon{
  width: 18px; height: 18px;
  display: inline-block;
}

.mobile-toggle{
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.hero{
  padding: 44px 0 28px 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
}

h1{
  margin: 14px 0 10px 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.lead{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.kpis{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.kpi{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.kpi strong{ display:block; font-size: 18px; }
.kpi span{ color: var(--muted-2); font-size: 13px; }

.hero-art{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226,232,240,0.9);
  background: white;
}
.hero-art img{ width: 100%; height: auto; display: block; }

.section{
  padding: 26px 0;
}

.section h2{
  font-size: 26px;
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
}
.section p.section-sub{
  margin: 0 0 18px 0;
  color: var(--muted);
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card{
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(15,23,42,0.05);
}

.card:hover{
  border-color: rgba(37,99,235,0.35);
  transform: translateY(-1px);
}

.card .meta{
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card h3{
  margin: 10px 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.card p{
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.card .actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pills{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
.pill{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(241,245,249,0.7);
  padding: 6px 10px;
  border-radius: 999px;
}

.breadcrumbs{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.page-title{
  padding: 22px 0 14px 0;
}
.page-title h1{
  font-size: 34px;
  margin: 0;
}
.page-title p{
  margin: 10px 0 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.toolbar{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.input{
  width: 100%;
  max-width: 420px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 600;
  color: var(--text);
}
.select{
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 700;
  color: var(--text);
}

.table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
}
.table th, .table td{
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 14px;
}
.table th{
  background: rgba(241,245,249,0.7);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.table tr:last-child td{ border-bottom: none; }

.callout{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(37,99,235,0.35);
  background: rgba(37,99,235,0.06);
  color: var(--muted);
}

footer{
  padding: 26px 0 40px 0;
  margin-top: 26px;
  border-top: 1px solid rgba(226,232,240,0.9);
  background: rgba(255,255,255,0.5);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.footer-grid h4{
  margin: 0 0 10px 0;
  font-size: 14px;
}
.footer-grid a{
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.footer-grid a:hover{ color: var(--text); }

.small{
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 10px;
}

hr.sep{
  border: 0;
  border-top: 1px solid rgba(226,232,240,0.9);
  margin: 18px 0;
}

@media (max-width: 960px){
  h1{ font-size: 38px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .kpis{ grid-template-columns: 1fr; }
  .nav{ display: none; }
  .mobile-toggle{ display: inline-flex; }
  .nav.open{
    display: flex;
    position: absolute;
    top: 60px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
  }
}
.category-head{
  display: flex;
  justify-content: space-between;
  align-items:start;
}
