/* BCAS Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --black: #0f0f0f;
  --near-black: #161616;
  --charcoal: #222222;
  --mid: #444444;
  --muted: #888888;
  --border: #2a2a2a;
  --border-light: #e2e0db;
  --white: #ffffff;
  --cream: #f8f7f4;
  --cream-dark: #efede8;
  --accent: oklch(0.60 0.16 150);
  --accent-light: oklch(0.92 0.06 150);
  --accent-dark: oklch(0.42 0.14 150);
  --font-head: 'Bebas Neue', 'Helvetica Neue', Helvetica, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --max: 1240px;
  --nav-h: 72px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav.light-nav.scrolled {
  background: rgba(248,247,244,0.97);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  height: 36px;
}

.nav-logo svg, .nav-logo img { height: 36px; width: auto; max-width: 120px; }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.light-nav .nav-links a { color: var(--mid); }
.light-nav .nav-links a:hover, .light-nav .nav-links a.active { color: var(--black); }

.nav-cta {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.light-nav .nav-burger span { background: var(--black); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--near-black); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 52px);
  color: var(--white); text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── SECTION BASICS ── */
section { padding: 100px 40px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow.dark { color: rgba(255,255,255,0.45); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 0.95; letter-spacing: 0.02em; }

.display {
  font-family: var(--font-head);
  font-size: clamp(64px, 8vw, 128px);
  line-height: 0.92; letter-spacing: 0.01em;
}

.title-lg {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 80px);
  line-height: 0.95;
}

.title-md {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 0.96;
}

.body-lg { font-size: 18px; line-height: 1.65; font-weight: 300; }
.body-md { font-size: 16px; line-height: 1.7; font-weight: 300; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}

.btn-primary {
  background: var(--accent); color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-arrow::after { content: '→'; font-size: 16px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--border-light);
}

.card-dark {
  background: var(--near-black);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

/* ── DIVIDER LINE ── */
.rule { width: 100%; height: 1px; background: var(--border-light); }
.rule-dark { width: 100%; height: 1px; background: var(--border); }

/* ── FOOTER ── */
.footer {
  background: var(--near-black);
  padding: 72px 40px 40px;
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo { height: 30px; width: auto; margin-bottom: 20px; }

.footer-tagline {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45);
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max); margin: 60px auto 0;
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── HERO DARK ── */
.hero-dark {
  min-height: 100vh;
  background: var(--near-black);
  display: flex; align-items: flex-end;
  padding: 160px 40px 80px;
  position: relative; overflow: hidden;
}

.hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 40%, oklch(0.25 0.06 150) 0%, transparent 70%);
}

/* ── HERO LIGHT ── */
.hero-light {
  min-height: 100vh;
  background: var(--cream);
  display: flex; align-items: center;
  padding: 160px 40px 80px;
  position: relative; overflow: hidden;
}

/* ── ACCENT STRIPE ── */
.accent-stripe {
  display: inline-block; width: 40px; height: 3px;
  background: var(--accent); margin-bottom: 24px;
}

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* ── NUMBER STAT ── */
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(52px, 5vw, 88px);
  line-height: 1; color: var(--accent);
}

.stat-label {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 8px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 40px 80px;
  background: var(--near-black);
}

.page-hero .container { max-width: var(--max); margin: 0 auto; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 0 36px; padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-head);
  font-size: 48px; color: var(--accent); line-height: 1;
}

.step-body h4 {
  font-family: var(--font-head);
  font-size: 28px; margin-bottom: 10px; color: var(--black);
}

.step-body p { font-size: 15px; line-height: 1.7; color: var(--mid); }

/* ── SERVICE CARD ── */
.service-block {
  padding: 48px 44px; background: var(--cream);
  border: 1px solid var(--border-light);
  display: flex; flex-direction: column; gap: 20px;
}

.service-block:hover { border-color: var(--accent); }
.service-block h3 { font-size: clamp(28px, 3vw, 40px); }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 72px 24px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-2, .grid-3, .grid-4, .pricing-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 24px 60px; }
  .hero-dark, .hero-light { padding: 120px 24px 60px; }
  .footer { padding: 60px 24px 32px; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── TAG ── */
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px;
  background: var(--accent-light); color: var(--accent-dark);
}

/* ── LOGO in SVG for nav (white version) ── */
.logo-white path, .logo-white polygon, .logo-white circle { fill: white; }
.logo-dark path, .logo-dark polygon, .logo-dark circle { fill: var(--black); }
