/* ===========================================================
   BrightSlate Consulting Ltd — Website Styles
   Brand: Navy #1A2A4F · Bright Orange #FF7F32 · Slate Gray #4A4A4A
   Fonts: Montserrat (headings) · Lato (body)
   =========================================================== */

:root {
  --navy: #1A2A4F;
  --navy-deep: #121e3a;
  --navy-soft: #243a66;
  --orange: #FF7F32;
  --orange-dark: #e8651a;
  --slate: #4A4A4A;
  --slate-light: #6f7480;
  --ink: #2a2f3a;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --line: #e5e8ee;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(26, 42, 79, 0.06);
  --shadow-md: 0 14px 38px rgba(26, 42, 79, 0.13);
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--orange-dark); text-decoration: none; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section { padding: 86px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}
.section-head p { color: var(--slate-light); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(255, 127, 50, 0.32);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 127, 50, 0.42);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--orange-dark); background: var(--bg-alt); }
.nav-links a.active { color: var(--orange-dark); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 22px;
  background: var(--orange);
  border-radius: 3px;
  margin: 4px auto 0;
}
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--orange-dark); }
.nav-links .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(255,127,50,0.22), transparent 60%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 70%);
  color: var(--white);
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 460px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 104px 0 110px;
  max-width: 760px;
}
.hero .eyebrow { color: var(--orange); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(700px 320px at 88% -30%, rgba(255,127,50,0.20), transparent 60%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 80%);
  color: var(--white);
  padding: 76px 0 70px;
}
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; }

/* ---------- Pillars strip ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 10px;
}
.pillar h3 { font-size: 1.18rem; margin-bottom: 8px; }
.pillar p { color: var(--slate-light); font-size: .98rem; }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(255,127,50,0.16), rgba(255,127,50,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--orange); fill: none; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-card p { color: var(--slate-light); font-size: 1rem; }
.service-card .more {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: var(--orange-dark);
}

/* ---------- Detailed service rows ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.service-detail .service-icon { margin-bottom: 0; }
.service-detail h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service-detail p { color: var(--slate-light); }
.service-detail ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.service-detail li {
  position: relative;
  padding-left: 22px;
  font-size: .95rem;
  color: var(--slate);
}
.service-detail li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ---------- Why-choose / value list ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-item {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.value-item .vnum {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--orange);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.value-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.value-item p { color: var(--slate-light); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 15% 120%, rgba(255,127,50,0.25), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 74px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 28px; font-size: 1.08rem; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--bg-alt);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--slate-light); margin-top: 4px; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 9px;
  background: rgba(255, 127, 50, 0.12);
  border: 1px solid rgba(255, 127, 50, 0.35);
  color: var(--orange-dark);
  font-size: .95rem;
  font-weight: 700;
}
.form-status.show { display: block; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.info-card .info-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.info-card .info-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; }
.info-card .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.info-card .value { font-size: 1.05rem; color: var(--navy); font-weight: 700; }
.info-card .value a { color: var(--navy); }
.info-card .value a:hover { color: var(--orange-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand .fb-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}
.footer-brand .fb-name span { color: var(--orange); }
.footer-col p { font-size: .96rem; }
.footer-col h4 {
  color: var(--white);
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.72); font-size: .96rem; }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact a { color: rgba(255, 255, 255, 0.72); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: .86rem;
  color: rgba(255, 255, 255, 0.55);
}
.tagline-pill {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: var(--orange);
  letter-spacing: .04em;
}

/* ---------- Stats band ---------- */
.stats { background: var(--bg-alt); padding: 58px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 8px 6px; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--orange);
  line-height: 1.05;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-top: 8px;
}
.stat-sub { font-size: .85rem; color: var(--slate-light); margin-top: 2px; }

/* ---------- About / Founder ---------- */
.founder { display: grid; grid-template-columns: 330px 1fr; gap: 46px; align-items: start; }
.founder-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.founder-photo {
  width: 132px; height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.founder-card .fc-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.35rem; color: #fff; }
.founder-card .fc-role { color: var(--orange); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .92rem; margin-top: 4px; }
.founder-facts {
  list-style: none;
  text-align: left;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
}
.founder-facts li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .94rem; color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
}
.founder-facts li:last-child { margin-bottom: 0; }
.founder-facts svg { width: 17px; height: 17px; stroke: var(--orange); fill: none; flex: none; margin-top: 3px; }
.founder-bio h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.founder-bio p { color: var(--slate); margin-bottom: 16px; }
.founder-bio p:last-child { margin-bottom: 0; }

/* ---------- Credentials ---------- */
.creds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cred {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.cred .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); margin-top: 7px; flex: none; }
.cred h3 { font-size: 1.04rem; margin-bottom: 3px; }
.cred p { font-size: .9rem; color: var(--slate-light); }

/* ---------- Current engagements ---------- */
.engage {
  background:
    radial-gradient(700px 340px at 85% -20%, rgba(255,127,50,0.18), transparent 60%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 80%);
  color: #fff;
}
.engage .section-head h2 { color: #fff; }
.engage .section-head p { color: rgba(255, 255, 255, 0.8); }
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.engage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.engage-card:hover { transform: translateY(-6px); border-color: rgba(255, 127, 50, 0.5); }
.engage-card .engage-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 9px;
}
.engage-card h3 { color: #fff; font-size: 1.16rem; margin-bottom: 8px; }
.engage-card p { color: rgba(255, 255, 255, 0.78); font-size: .96rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { position: static; max-width: 380px; margin: 0 auto; }
  .creds-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 62px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 16px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; border-radius: 8px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--bg-alt); }
  .nav-links .nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .hero-inner { padding: 76px 0 84px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-detail { grid-template-columns: 1fr; gap: 16px; }
}
