/* ============================================================
   getSHIFT Marketing Studio — Main Stylesheet
   Version: 1.0 | May 2026
   Font: Poppins | Accent: #719e2f
   ============================================================ */

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

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0a0a;
  --white:       #fefffa;
  --green:       #719e2f;
  --dark-green:  #354401;
  --light-green: #bdd753;
  --surface:     #1a1a1a;
  --surface2:    #111111;
  --gray:        rgba(254,255,250,0.45);
  --border:      rgba(254,255,250,0.07);
  --border-g:    rgba(113,158,47,0.25);
  --font:        'Poppins', sans-serif;
  --nav-h:       80px;
  --max:         1180px;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.t-eyebrow {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.t-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.t-h1 {
  font-size: clamp(3rem, 7.2vw, 7.5rem);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.03em;
}
.t-h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.02em;
}
.t-h3 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.t-h4 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.t-h1 em, .t-h2 em, .t-h3 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(254,255,250,.38);
}
.t-accent { color: var(--green); }
.t-body {
  font-size: .92rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.82;
}
.t-tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 3rem; }
section { padding: 6rem 0; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 3rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(113,158,47,.25), transparent);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(113,158,47,.12);
}

/* Logo */
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-logo svg { display: block; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(254,255,250,.5);
  cursor: pointer;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem 0;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.green { color: var(--green); }
.nav-links a.green:hover { color: var(--light-green); }

/* CTA button */
.nav-cta {
  border: 1px solid var(--green) !important;
  color: var(--green) !important;
  padding: .46rem 1.3rem !important;
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--green) !important;
  color: var(--black) !important;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(113,158,47,.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s;
  pointer-events: none;
  z-index: 300;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block !important;
  padding: .75rem 1.2rem !important;
  border-bottom: 1px solid rgba(254,255,250,.04);
  font-size: .65rem !important;
  letter-spacing: .12em !important;
  color: rgba(254,255,250,.5) !important;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: rgba(113,158,47,.08);
  color: var(--white) !important;
}
.drop-arrow {
  font-size: .5rem;
  opacity: .5;
  transition: transform .2s;
  display: inline-block;
}
.nav-links > li:hover .drop-arrow { transform: rotate(180deg); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: rgba(254,255,250,.6);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mob-sub {
  font-size: .82rem;
  font-weight: 400;
  color: rgba(254,255,250,.35);
  padding: .4rem 1rem;
  border-bottom: 1px solid rgba(254,255,254,.04);
}
.nav-mobile .mob-sub:hover { color: var(--green); }
.nav-mobile .mob-cta {
  margin-top: 1rem;
  background: var(--green);
  color: var(--black) !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem !important;
  border: none !important;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 2.2rem;
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s;
  white-space: nowrap;
}
.btn-fill { background: var(--green); color: var(--black); }
.btn-fill:hover { background: var(--dark-green); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(254,255,250,.2);
  color: rgba(254,255,250,.65);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-outline-green {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--black); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 5rem) 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-sm {
  min-height: 65vh;
  padding: calc(var(--nav-h) + 4rem) 3rem 4rem;
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 75% 35%, rgba(113,158,47,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254,255,250,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,255,250,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-sub {
  font-size: .95rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.82;
  margin-top: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(254,255,250,.2);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.2} 50%{opacity:1} }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 2.2rem 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.mq-item {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  padding: 0 1.2rem;
  line-height: 1;
}
.mq-outline {
  -webkit-text-stroke: 1px rgba(254,255,250,.12);
  color: transparent;
}
.mq-green { color: var(--green); }
.mq-sep {
  color: var(--green);
  padding: 0 .4rem;
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4rem);
  align-self: center;
}

/* ── SCROLL TEXT STRIP ───────────────────────────────────────── */
.scroll-strip {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.scroll-strip-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.strip-item {
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 2rem;
  color: rgba(254,255,250,.1);
  white-space: nowrap;
}
.strip-item strong { color: rgba(113,158,47,.45); }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}
.svc-card {
  background: var(--surface);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.svc-card:hover { background: #222; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(254,255,250,.04);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
}
.svc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .7rem;
  line-height: 1.2;
}
.svc-desc {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(254,255,250,.4);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.svc-link {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.svc-link:hover { gap: .7rem; }

/* ── SHIFT FRAMEWORK ─────────────────────────────────────────── */
.shift-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.5rem;
}
.shift-item {
  border-left: 1px solid var(--border);
  padding: 2.2rem 1.4rem;
  transition: border-color .3s, background .3s;
}
.shift-item:last-child { border-right: 1px solid var(--border); }
.shift-item:hover { border-left-color: var(--green); background: rgba(113,158,47,.03); }
.shift-letter {
  font-size: 4.5rem;
  font-weight: 800;
  -webkit-text-stroke: 1px rgba(113,158,47,.25);
  color: transparent;
  transition: -webkit-text-stroke-color .3s;
  display: block;
  margin-bottom: .8rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.shift-item:hover .shift-letter { -webkit-text-stroke-color: var(--green); }
.shift-word {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .7rem;
  display: block;
}
.shift-desc {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(254,255,250,.38);
  line-height: 1.7;
}

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}
.process-step {
  border-left: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.process-step:last-child { border-right: 1px solid var(--border); }
.ps-num {
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(254,255,250,.04);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.ps-label {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .7rem;
  display: block;
}
.ps-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .9rem;
  line-height: 1.25;
}
.ps-desc {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(254,255,250,.4);
  line-height: 1.75;
}

/* ── STATS FRAME ─────────────────────────────────────────────── */
.stats-frame {
  border: 1px solid rgba(113,158,47,.18);
  padding: 2.8rem;
  position: relative;
}
.stats-frame::before {
  content: 'getSHIFT';
  position: absolute;
  top: -.55rem;
  left: 1.8rem;
  background: var(--black);
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--green);
  padding: 0 .45rem;
  font-weight: 500;
  text-transform: uppercase;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat { border-top: 1px solid rgba(113,158,47,.12); padding-top: .9rem; }
.stat-n {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-l {
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(254,255,250,.3);
  margin-top: .25rem;
}

/* ── PORTFOLIO / WORK ────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.wcard {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  cursor: pointer;
}
.wcard-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background .5s;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.wcard:hover .wcard-placeholder {
  background: linear-gradient(135deg, #1a280a 0%, #243510 100%);
}
.wcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .5s, transform .6s;
  position: absolute;
  inset: 0;
}
.wcard:hover img { filter: grayscale(0%); transform: scale(1.04); }
.wcard-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
}
.wcard:hover .wcard-overlay { opacity: 1; }
.wcard-cat {
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .35rem;
}
.wcard-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.wcard-ico {
  font-size: 2.2rem;
  opacity: .08;
  margin-bottom: .8rem;
  transition: opacity .5s;
}
.wcard:hover .wcard-ico { opacity: .15; }
.wcard-label {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(254,255,250,.18);
  transition: color .5s;
}
.wcard:hover .wcard-label { color: rgba(113,158,47,.5); }
.wcard-link {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(254,255,250,.25);
  margin-top: .3rem;
}

/* FILTER BUTTONS */
.filter-row { display: flex; gap: .4rem; margin-bottom: 2rem; flex-wrap: wrap; }
.fbtn {
  padding: .38rem .95rem;
  border: 1px solid rgba(254,255,254,.1);
  background: transparent;
  color: rgba(254,255,250,.38);
  font-family: var(--font);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.fbtn.on, .fbtn:hover { border-color: var(--green); color: var(--green); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}
.tcard {
  background: var(--black);
  padding: 3rem;
  transition: background .3s;
}
.tcard:hover { background: #0f0f0f; }
.tcard-qm {
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(113,158,47,.18);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: .8rem;
}
.tcard-qt {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(254,255,250,.5);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.8rem;
}
.tcard-author {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  display: block;
}
.tcard-role {
  font-size: .65rem;
  font-weight: 300;
  color: var(--green);
  margin-top: .2rem;
  display: block;
}

/* ── BIG CTA ─────────────────────────────────────────────────── */
.cta-block {
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem;
  text-align: center;
}
.cta-bg-text {
  position: absolute;
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 800;
  letter-spacing: -.05em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(254,255,250,.025);
  color: transparent;
  line-height: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* ── SOLUTIONS PAGE ──────────────────────────────────────────── */
.sol-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.sol-card {
  padding: 3.5rem 3rem;
  transition: background .3s;
  border-top: 2px solid transparent;
  cursor: pointer;
}
.sol-card.primary { border-top-color: var(--green); }
.sol-card.secondary { border-top-color: rgba(113,158,47,.3); }
.sol-card:hover { background: rgba(113,158,47,.04) !important; }
.sol-card-label {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
  display: block;
}
.sol-card-title {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.sol-card-desc {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(254,255,250,.42);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.sol-card-tags {
  font-size: .62rem;
  letter-spacing: .08em;
  color: rgba(254,255,250,.22);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}
.new-badge {
  display: inline-block;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  padding: .22rem .65rem;
  margin-left: .7rem;
  vertical-align: middle;
}

/* ── SERVICE DETAIL LIST ─────────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}
.service-item {
  background: var(--surface2);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
  border-left: 2px solid transparent;
  transition: all .3s;
}
.service-item:hover { background: #141414; border-left-color: var(--green); }
.si-num {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .8rem;
  display: block;
}
.si-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.si-desc {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(254,255,250,.42);
  line-height: 1.8;
}

/* ── CASE STUDIES ────────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}
.case-card {
  background: var(--surface2);
  padding: 2rem 1.8rem;
  transition: background .3s;
}
.case-card:hover { background: #171717; }
.case-label {
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .7rem;
  display: block;
}
.case-title {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .8rem;
  line-height: 1.25;
}
.case-desc {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(254,255,250,.38);
  line-height: 1.75;
}

/* ── TEAM ────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.team-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background .3s;
}
.team-card:hover { background: #202020; }
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(113,158,47,.1);
  border: 1px solid rgba(113,158,47,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.4rem;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.tm-name { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.tm-role {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}
.tm-bio {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(254,255,250,.42);
  line-height: 1.75;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.form-box {
  background: #0f0f0f;
  padding: 3rem;
  border: 1px solid var(--border);
}
.form-box-label {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.8rem;
  display: block;
}
.form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(254,255,250,.1);
  padding: .8rem 0;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color .25s;
  display: block;
  margin-bottom: 1.2rem;
}
.form-field:focus { border-bottom-color: var(--green); }
.form-field::placeholder { color: rgba(254,255,250,.28); }
.form-field option { background: #0f0f0f; color: var(--white); }
.contact-steps { margin-top: 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.contact-step { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: .8rem; }
.contact-step-num {
  font-size: .62rem;
  font-weight: 600;
  color: var(--green);
  min-width: 20px;
  padding-top: .1rem;
  flex-shrink: 0;
}
.contact-step-text {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(254,255,250,.32);
  line-height: 1.65;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(113,158,47,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--green);
  flex-shrink: 0;
}
.contact-detail-text {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(254,255,250,.48);
}

/* ── AI STUDIO ───────────────────────────────────────────────── */
.ai-hero {
  background: #030803;
  min-height: 100vh;
}
.ai-bg-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(113,158,47,.08) 0%, transparent 68%);
  pointer-events: none;
}
.ai-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113,158,47,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113,158,47,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid rgba(113,158,47,.08);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.footer-tagline {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(254,255,250,.28);
  line-height: 1.6;
  max-width: 210px;
  margin-top: .8rem;
}
.footer-col-title {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(254,255,250,.25);
  margin-bottom: .9rem;
  display: block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(254,255,250,.35);
  transition: color .2s;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-copy {
  font-size: .65rem;
  font-weight: 300;
  color: rgba(254,255,250,.18);
  letter-spacing: .06em;
}
.footer-social { display: flex; gap: 1.4rem; }
.footer-social a {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(254,255,250,.22);
  transition: color .2s;
}
.footer-social a:hover { color: var(--green); }

/* ── CLIENT LOGO STRIP ───────────────────────────────────────── */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* Each logo wrapped in a styled card */
.logo-card {
  background: #ffffff;
  border-radius: 10px;
  padding: .85rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.35), 0 1px 3px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.25);
}
.logo-card img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
}
/* Fallback text logo card */
.logo-card-text {
  font-size: .78rem;
  font-weight: 700;
  color: #222;
  letter-spacing: .06em;
  text-align: center;
  white-space: nowrap;
}
.logo-strip-text {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(254,255,250,.18);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

/* ── SURFACE BACKGROUNDS ─────────────────────────────────────── */
.bg-black   { background: var(--black); }
.bg-surface { background: var(--surface); }
.bg-dark    { background: #0d0d0d; }
.bg-ai      { background: #030803; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-muted { color: var(--gray); }
.text-green { color: var(--green); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.sticky-top { position: sticky; top: 6rem; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .shift-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .sol-2col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 4rem 0; }
  .container, .section-inner { padding: 0 1.5rem; }
  .hero, .hero-sm { padding-left: 1.5rem; padding-right: 1.5rem; }
  .t-h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .t-h2 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-block { padding: 4rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
