/* Brij Tech — Joey's-style marketing homepage */
:root {
  --brij-ink: #101828;
  --brij-muted: #5b6475;
  --brij-line: #dfe5ee;
  --brij-soft: #f5f8fc;
  --brij-blue: #2457ff;
  --brij-cyan: #19b6c9;
  --brij-yellow: #ffc857;
  --brij-red: #d8264f;
}

.brij-wrap { max-width: 1180px; margin: 0 auto; padding: 0 18px; }

.brij-home { color: var(--brij-ink); }
.brij-home .site-content { padding-top: 0; }

.brij-hero {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  padding: 48px 0 36px;
}
.brij-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.brij-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0d5260;
  background: #e8fbfd;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.brij-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  margin: 0 0 16px;
  font-weight: 800;
}
.brij-lead { font-size: 18px; line-height: 1.55; color: var(--brij-muted); margin: 0 0 22px; }
.brij-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.brij-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 8px;
  font-weight: 800; text-decoration: none; border: 1px solid transparent;
}
.brij-btn-primary { background: var(--brij-ink); color: #fff; }
.brij-btn-secondary { background: #fff; color: var(--brij-ink); border-color: var(--brij-line); }
.brij-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.brij-stats strong { display: block; font-size: 22px; }
.brij-stats span { font-size: 13px; color: var(--brij-muted); }
.brij-hero-media img {
  width: 100%; border-radius: 8px; box-shadow: 0 18px 40px rgba(16,24,40,.12);
}

.brij-section { padding: 42px 0; }
.brij-section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px; }
.brij-section-head h2 { margin: 0; font-size: clamp(26px, 3vw, 40px); }
.brij-section-head p { margin: 0; max-width: 520px; color: var(--brij-muted); line-height: 1.5; }

.brij-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.brij-tile {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--brij-line); border-radius: 10px;
  padding: 18px; border-top: 4px solid var(--brij-blue);
  transition: transform .15s ease, box-shadow .15s ease;
}
.brij-tile:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(16,24,40,.08); }
.brij-tile h3 { margin: 12px 0 6px; font-size: 17px; }
.brij-tile p { margin: 0; font-size: 14px; color: var(--brij-muted); line-height: 1.45; }
.brij-tile-blue { border-top-color: var(--brij-blue); }
.brij-tile-cyan { border-top-color: var(--brij-cyan); }
.brij-tile-yellow { border-top-color: var(--brij-yellow); }
.brij-tile-red { border-top-color: var(--brij-red); }

.brij-strip { background: var(--brij-soft); border-block: 1px solid var(--brij-line); padding: 28px 0; }
.brij-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brij-strip-grid > div { padding: 0 12px; border-right: 1px solid var(--brij-line); }
.brij-strip-grid > div:last-child { border-right: 0; }
.brij-strip strong { display: block; margin-bottom: 6px; }
.brij-strip p { margin: 0; color: var(--brij-muted); font-size: 14px; line-height: 1.5; }

.brij-products-section .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.brij-products-section .woocommerce ul.products li.product {
  border: 1px solid var(--brij-line);
  border-radius: 10px;
  padding: 12px !important;
  margin: 0 !important;
  background: #fff;
}
.brij-products-section .woocommerce ul.products li.product img {
  border-radius: 6px;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.brij-products-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px;
  min-height: 46px;
}
.brij-products-section .price { color: #0d5260; font-weight: 800; }
.brij-more { margin-top: 24px; text-align: center; }

@media (max-width: 900px) {
  .brij-hero-grid { grid-template-columns: 1fr; }
  .brij-tiles { grid-template-columns: repeat(2, 1fr); }
  .brij-strip-grid { grid-template-columns: 1fr; }
  .brij-strip-grid > div { border-right: 0; border-bottom: 1px solid var(--brij-line); padding-bottom: 12px; }
  .brij-products-section .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
