/* =========================================================
   C&G Professional Services — Complete Stylesheet
   Brand: Black + Lime Green #6BCB3D | Big Four Advisory Style
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --green:       #6BCB3D;
  --green-dark:  #52a82e;
  --green-dim:   rgba(107,203,61,.12);
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --white:       #ffffff;
  --off-white:   #f7f7f7;
  --gray-50:     #f5f5f5;
  --gray-100:    #ebebeb;
  --gray-200:    #d4d4d4;
  --gray-400:    #a3a3a3;
  --gray-500:    #737373;
  --gray-700:    #404040;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.15);
  --t:           all .25s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
p   { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1,h2,h3,h4,h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

.container  { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 40px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--gray-500); }
.bg-black    { background: var(--black); }
.bg-dark     { background: var(--dark-2); }
.bg-gray     { background: var(--gray-50); }
.bg-white    { background: var(--white); }

.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.label-dim { color: rgba(107,203,61,.7); }

.section-head        { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head h2     { margin-bottom: 16px; }
.section-head p      { font-size: 1.05rem; color: var(--gray-500); max-width: 560px; line-height: 1.75; }
.section-head.center p { margin: 0 auto; }

.accent-bar        { width: 44px; height: 4px; background: var(--green); display: block; margin: 14px 0 24px; }
.accent-bar.center { margin: 14px auto 24px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-green          { background: var(--green); color: var(--black); border-color: var(--green); }
.btn-green:hover    { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,203,61,.35); }
.btn-black          { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover    { background: var(--dark-2); transform: translateY(-2px); }
.btn-outline-white  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-green  { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--black); }
.btn-sm { padding: 10px 22px; font-size: .75rem; }

/* =========================================================
   HEADER — Dark
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 68px; width: auto; }

.logo-fallback { display: flex; align-items: baseline; gap: 4px; }
.logo-cg {
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: -.04em; color: var(--white); line-height: 1;
}
.logo-tagline {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-left: 10px;
  border-left: 2px solid var(--green);
  padding-left: 10px; line-height: 1.4;
}

.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav a {
  display: block; padding: 10px 14px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-bottom: 2px solid transparent;
  transition: var(--t);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); border-bottom-color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: var(--black) !important;
  border-bottom-color: transparent !important; margin-left: 10px;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; border-bottom-color: transparent !important; }
.nav-portal {
  border: 1.5px solid rgba(107,203,61,.5) !important; color: var(--green) !important;
  border-bottom-color: rgba(107,203,61,.5) !important; margin-left: 6px;
  padding: 8px 16px !important; border-radius: 2px;
}
.nav-portal:hover { background: var(--green) !important; color: var(--black) !important; border-color: var(--green) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: var(--black);
  padding: 80px 0 72px;
  border-bottom: 3px solid var(--green);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .08;
}
.page-hero .container { position: relative; }
.page-hero h1  { color: var(--white); margin-bottom: 16px; max-width: 760px; }
.page-hero p   { color: rgba(255,255,255,.55); font-size: 1.05rem; max-width: 580px; font-weight: 400; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 28px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* =========================================================
   HERO — Homepage
   ========================================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--green);
}

.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.85) 50%, rgba(10,10,10,.75) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-welcome {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-welcome::before { content: ''; width: 32px; height: 2px; background: var(--green); flex-shrink: 0; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--green); }

.hero-desc {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-proof-avatar-stack {
  display: flex;
}
.hero-proof-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--dark-3);
  background-size: cover;
  background-position: center;
  margin-left: -10px;
  overflow: hidden;
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-proof-text { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.4; }
.hero-proof-text strong { color: var(--white); display: block; }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stat { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.06); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 2.4rem; font-weight: 900;
  color: var(--green); letter-spacing: -.04em;
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* Hero side panel */
.hero-panel {
  background: rgba(10,15,20,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  border-top: 3px solid var(--green);
}
.hero-panel-title {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero-service-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--t); cursor: default;
}
.hero-service-item:last-child { border-bottom: none; }
.hero-service-item:hover { background: rgba(107,203,61,.10); }
.hero-service-item:hover .hsi-name { color: var(--white); }
.hsi-dot {
  width: 7px; height: 7px; min-width: 7px;
  border-radius: 50%;
  background: rgba(107,203,61,.7);
  transition: var(--t);
}
.hero-service-item:hover .hsi-dot { background: var(--green); }
.hsi-name { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.92); transition: var(--t); }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
}
.service-item {
  background: var(--white);
  padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: var(--t);
}
.service-item:hover { border-top-color: var(--green); background: var(--off-white); }
.service-item:hover .si-arrow { opacity: 1; transform: translateX(0); }
.si-number { font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: var(--gray-200); margin-bottom: 18px; }
.si-icon   { font-size: 1.8rem; margin-bottom: 18px; display: block; }
.service-item h3 { color: var(--black); font-size: 1.05rem; margin-bottom: 10px; }
.service-item p  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 18px; }
.si-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); opacity: 0; transform: translateX(-8px); transition: var(--t);
}

/* =========================================================
   IMAGE SECTIONS
   ========================================================= */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.img-split-img {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.img-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.img-split-img:hover img { transform: scale(1.03); }

.img-split-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature image card */
.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.img-card:hover img { transform: scale(1.04); }
.img-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  padding: 32px 28px 28px;
}

/* =========================================================
   TEAM
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
}
.team-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--t);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card:hover .team-card-img img { transform: scale(1.06); }

.team-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.6) 0%, transparent 50%);
}

.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: .95rem; color: var(--black); margin-bottom: 4px; }
.team-role {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px; display: block;
}
.team-card-body p { font-size: .82rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* =========================================================
   ABOUT SPLIT
   ========================================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  background: var(--black);
  padding: 56px 48px;
  position: relative;
}
.about-stats::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--green); }
.stat-row { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-row:first-child { padding-top: 0; }
.stat-row:last-child  { border-bottom: none; padding-bottom: 0; }
.stat-row .number { font-size: 3.2rem; font-weight: 900; color: var(--green); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.stat-row .desc   { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin: 0; }

.about-content p { font-size: 1rem; color: var(--gray-700); line-height: 1.75; }
.check-list { margin: 24px 0 32px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--gray-100);
  font-size: .9rem; color: var(--gray-700); font-weight: 500;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '→'; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   INDUSTRY GRID
   ========================================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
}
.industry-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--t);
  border-left: 3px solid transparent;
  cursor: default;
}
.industry-item:hover { background: var(--black); border-left-color: var(--green); }
.industry-item:hover .ii-name { color: var(--white); }
.industry-item:hover .ii-icon { filter: grayscale(0); }
.ii-icon { font-size: 1.2rem; transition: var(--t); }
.ii-name { font-size: .875rem; font-weight: 600; color: var(--black); transition: var(--t); }

/* =========================================================
   ARTICLES
   ========================================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
}
.article-item {
  background: var(--white);
  padding: 36px;
  display: flex; flex-direction: column;
  border-top: 3px solid transparent;
  transition: var(--t);
}
.article-item:hover { border-top-color: var(--green); background: var(--off-white); }
.article-cat  { font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.article-date { font-size: .75rem; color: var(--gray-400); margin-bottom: 14px; display: block; }
.article-item h3 { font-size: .95rem; color: var(--black); line-height: 1.45; margin-bottom: 12px; flex: 1; }
.article-item p  { font-size: .85rem; color: var(--gray-500); margin-bottom: 18px; }
.article-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--black); transition: var(--t); margin-top: auto;
}
.article-link:hover { color: var(--green); }
.article-link::after { content: '→'; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: var(--green); padding: 80px 0; }
.cta-band .container { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-band h2   { color: var(--black); font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 8px; }
.cta-band p    { color: rgba(0,0,0,.6); font-size: .975rem; margin: 0; max-width: 560px; }
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cta-dark      { background: var(--black); }
.cta-dark h2   { color: var(--white); }
.cta-dark p    { color: rgba(255,255,255,.5); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: .975rem; font-weight: 700; color: var(--black);
  cursor: pointer; text-align: left;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray-500);
  transition: var(--t);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); color: var(--black); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-answer-inner { padding: 0 0 22px; font-size: .9rem; color: var(--gray-500); line-height: 1.75; max-width: 720px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* =========================================================
   CASE STUDIES
   ========================================================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
}
.case-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 3px solid transparent;
  transition: var(--t);
  display: flex; flex-direction: column;
}
.case-card:hover { border-top-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--green-dim);
  color: var(--green-dark);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px; align-self: flex-start;
}
.case-card h3 { font-size: 1rem; margin-bottom: 12px; }
.case-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
.case-result {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  font-size: .8rem; font-weight: 700; color: var(--green);
}

/* =========================================================
   CAREERS
   ========================================================= */
.job-list { }
.job-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--t);
}
.job-item:first-child { padding-top: 0; }
.job-item:last-child  { border-bottom: none; }
.job-item:hover .job-title { color: var(--green); }
.job-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; transition: var(--t); }
.job-meta  { display: flex; gap: 16px; }
.job-tag   { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); }
.job-tag.highlight { color: var(--green); }

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.perk-item { padding: 36px 32px; }
.perk-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.perk-item h4 { color: var(--white); font-size: .95rem; margin-bottom: 8px; }
.perk-item p  { color: rgba(255,255,255,.45); font-size: .85rem; line-height: 1.65; margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--gray-100);
}
.ci-item:first-of-type { padding-top: 0; }
.ci-item:last-of-type  { border-bottom: none; }
.ci-dot { width: 10px; height: 10px; min-width: 10px; border-radius: 50%; background: var(--green); margin-top: 5px; }
.ci-label { font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); display: block; margin-bottom: 4px; }
.ci-value { font-size: .95rem; color: var(--black); }
.ci-value a { color: var(--black); font-weight: 600; }
.ci-value a:hover { color: var(--green); }

.social-strip { display: flex; gap: 8px; margin-top: 28px; }
.social-chip {
  padding: 8px 14px; background: var(--black); color: var(--white);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  transition: var(--t);
}
.social-chip:hover { background: var(--green); color: var(--black); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-700); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--gray-200);
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--black);
  background: var(--white); outline: none; transition: var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(107,203,61,.12); }
.form-group textarea { height: 130px; resize: vertical; }
.form-note { font-size: .73rem; color: var(--gray-400); margin-top: 10px; }

/* Service selector on contact page */
.service-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 24px; }
.service-option { display: none; }
.service-label {
  display: block; padding: 11px 14px; border: 1px solid var(--gray-200);
  font-size: .74rem; font-weight: 700; color: var(--gray-500);
  cursor: pointer; transition: var(--t); text-align: center;
}
.service-option:checked + .service-label { border-color: var(--green); background: var(--green); color: var(--black); }
.service-label:hover { border-color: var(--black); color: var(--black); }

/* =========================================================
   SECTOR CARDS (clientele)
   ========================================================= */
.sector-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 3px solid var(--gray-100);
  transition: var(--t);
}
.sector-card:hover { border-top-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sector-card .s-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.sector-card h3  { font-size: 1rem; margin-bottom: 8px; }
.sector-card p   { font-size: .875rem; color: var(--gray-500); margin: 0; }

/* =========================================================
   SERVICE DETAIL (services page)
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.sd-num { font-size: 2.8rem; font-weight: 900; color: var(--gray-100); letter-spacing: -.06em; line-height: 1; margin-bottom: 16px; }
.sd-icon {
  font-size: 2.8rem;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-left: 3px solid var(--green);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sd-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--green-dim); color: var(--green-dark);
  font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.sd-meta h2 { font-size: 1.4rem; margin-bottom: 0; }
.sd-body p  { font-size: .975rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 14px; }
.sd-list { margin: 16px 0 24px; }
.sd-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--gray-50);
  font-size: .875rem; color: var(--gray-700);
}
.sd-list li:last-child { border-bottom: none; }
.sd-list li::before { content: '—'; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* =========================================================
   WHY ITEMS (dark bg)
   ========================================================= */
.why-item {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.06);
  border-top: 3px solid transparent;
  transition: var(--t);
}
.why-item:hover { border-top-color: var(--green); background: rgba(255,255,255,.03); }
.why-item .wi-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.why-item h4 { color: var(--white); font-size: .95rem; margin-bottom: 8px; }
.why-item p  { color: rgba(255,255,255,.4); font-size: .875rem; margin: 0; line-height: 1.65; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter-row { display: flex; gap: 10px; }
.newsletter-row input {
  flex: 1; padding: 13px 16px;
  border: 1px solid var(--gray-200);
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--black);
  outline: none; transition: var(--t);
}
.newsletter-row input:focus { border-color: var(--green); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--black); }
.footer-top {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 300px; margin-top: 20px; }
.footer-col h5  { font-size: .65rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.38); transition: var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .74rem; color: rgba(255,255,255,.22);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: var(--t); }
.footer-bottom a:hover { color: var(--green); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-panel  { display: none; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .img-split { grid-template-columns: 1fr; }
  .img-split-img { min-height: 360px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .main-nav {
    display: none; position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--green);
    padding: 16px 20px 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
  }
  .main-nav.open { display: block; }
  .main-nav ul   { flex-direction: column; gap: 0; }
  .main-nav a    { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.06); border-right: none; }
  .nav-cta       { margin-left: 0 !important; margin-top: 10px; }
  .nav-portal    { margin-left: 0 !important; margin-top: 6px; }
  .nav-toggle    { display: flex; }

  .hero { min-height: auto; padding: 72px 0 64px; }
  .hero-bg-img { background-attachment: scroll; }
  .hero-stats  { grid-template-columns: repeat(3, 1fr); }
  .hero-stat   { padding: 16px 14px; }

  .services-grid   { grid-template-columns: 1fr; }
  .articles-grid   { grid-template-columns: 1fr; }
  .industry-grid   { grid-template-columns: repeat(2, 1fr); }
  .case-grid       { grid-template-columns: 1fr; }
  .perks-grid      { grid-template-columns: 1fr; }
  .service-detail  { grid-template-columns: 1fr; gap: 24px; }
  .about-split     { grid-template-columns: 1fr; gap: 40px; }
  .img-split-content { padding: 48px 28px; }
  .footer-top      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; gap: 8px; text-align: center; }
  .cta-band .container { grid-template-columns: 1fr; gap: 28px; }
  .form-row        { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
  .job-item        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero-actions   { flex-direction: column; }
  .btn            { width: 100%; justify-content: center; }
  .industry-grid  { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .hero-stats     { grid-template-columns: 1fr; }
  .hero-stat:not(:first-child) { border-top: 1px solid rgba(255,255,255,.06); }
}
