/* Brewingleads — static page styles (dark brand theme, matches brewingleads.com)
   near-black #0B0B0F · brand orange #FF7A18 · white text.
   Lightweight, no JS — fast + crawlable. Used by about/services/contact/
   privacy-policy/branding-agency-pune.html. */

:root {
  --bg: #0B0B0F;
  --text: #FFFFFF;
  --muted: rgba(255,255,255,0.64);
  --faint: rgba(255,255,255,0.42);
  --orange: #FF7A18;
  --orange-hover: #FF6B35;
  --rule: rgba(255,255,255,0.12);
  --card: rgba(255,255,255,0.035);
  --measure: 40rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- header ---------- */

.site-head {
  border-bottom: 1px solid var(--rule);
  padding: 1.15rem 0;
  position: sticky;
  top: 0;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.brand img { height: 26px; width: auto; display: block; }
.brand span { color: var(--orange); }

.site-nav { display: flex; gap: 1.35rem; font-size: 0.9rem; flex-wrap: wrap; }

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--orange);
}

/* ---------- type ---------- */

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 1.25rem;
  max-width: 24ch;
}

h1 span, h1 .accent { color: var(--orange); }

h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.4rem 0 0.4rem;
}

p { margin: 0 0 1.1rem; max-width: var(--measure); color: var(--muted); }

.lede {
  font-size: 1.22rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44rem;
}

main a { color: var(--orange); text-decoration-color: rgba(255,122,24,0.5); text-underline-offset: 3px; }
main a:hover { text-decoration-color: var(--orange); }
strong { color: var(--text); }

main ul { color: var(--muted); padding-left: 1.15rem; }
main li { margin-bottom: 0.4rem; }

/* ---------- sections ---------- */

section { padding: 3.5rem 0; border-top: 1px solid var(--rule); }
section:first-of-type { border-top: none; padding-top: 3.5rem; }

/* ---------- method (numbered) ---------- */

.method { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.method li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--rule);
}
.method li:first-child { border-top: none; }
.method li::before {
  content: counter(step, decimal-leading-zero);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1.1;
}
.method p { margin: 0; }

/* ---------- pillars -> cards ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover { border-color: rgba(255, 122, 24, 0.4); transform: translateY(-3px); }
.pillar h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.pillar ul { margin: 0.6rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.pillar li { margin-bottom: 0.35rem; }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--rule); }
.faq > div { padding: 1.5rem 0; border-bottom: 1px solid var(--rule); }
.faq p { margin: 0; color: var(--muted); }

/* ---------- contact ---------- */

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--rule); }
.contact-list .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.2rem;
}
.contact-list .value { font-size: 1.15rem; font-weight: 600; color: var(--text); }

/* ---------- cta (pill, matches site) ---------- */

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 122, 24, 0.25);
}

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 3.5rem;
  font-size: 0.88rem;
  color: var(--faint);
}
.site-foot a { color: var(--muted); text-decoration: none; }
.site-foot a:hover { color: var(--text); }
.site-foot nav { margin-bottom: 1rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
