#projects-page-title {
  position: fixed;
  z-index: 10;
  overflow: hidden;
}
#projects-page-title svg {
  display: block;
  overflow: visible;
}
#projects-page-title text {
  fill: #FFFFFF;
}

#page-projects[hidden] #projects-page-title,
#page-projects[hidden] #projects-intro-bio,
#page-projects[hidden] #projects-filters,
#page-projects[hidden] #projects-scroll-zone,
#page-projects[hidden] #projects-right-panel,
#page-projects[hidden] #projects-counter,
#page-projects[hidden] #projects-scroll-indicator,
#page-projects[hidden] #projects-img-1,
#page-projects[hidden] #projects-img-marquee,
#page-projects[hidden] #projects-cta,
#page-projects[hidden] #projects-category-breakdown,
#page-projects[hidden] #projects-industry-console,
#page-projects[hidden] #projects-currently-building,
#page-projects[hidden] #projects-quote {
  display: none !important;
}

#projects-currently-building {
  position: fixed;
  z-index: 10;
  background: linear-gradient(135deg, #031B1B 0%, #021A1A 100%);
  border: 1px solid rgba(0, 223, 130, 0.25);
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}
#projects-currently-building::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #00DF82 40%, #2CC295 70%, transparent 100%);
  opacity: 0.6;
}
#projects-currently-building .pcb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
}
#projects-currently-building .pcb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
#projects-currently-building .pcb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 223, 130, 0.1);
  border: 1px solid rgba(0, 223, 130, 0.3);
  border-radius: 9999px;
  padding: 2px 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  color: #00DF82;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#projects-currently-building .pcb-blink {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #00DF82;
  box-shadow: 0 0 5px #00DF82;
  animation: pcb-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
#projects-currently-building .pcb-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(241, 247, 247, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#projects-currently-building .pcb-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  flex-shrink: 0;
}
#projects-currently-building .pcb-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  text-transform: uppercase;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#projects-currently-building .pcb-type {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(94, 175, 116, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}
#projects-currently-building .pcb-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
#projects-currently-building .pcb-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(241, 247, 247, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}
#projects-currently-building .pcb-progress-fill {
  height: 100%;
  width: var(--pcb-pct, 0%);
  background: linear-gradient(to right, #2CC295, #00DF82);
  border-radius: 9999px;
  box-shadow: 0 0 6px rgba(0, 223, 130, 0.5);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
#projects-currently-building .pcb-pct {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00DF82;
  flex-shrink: 0;
  min-width: 2.5rem;
  text-align: right;
}
#projects-currently-building .pcb-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  flex-shrink: 0;
}
#projects-currently-building .pcb-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(241, 247, 247, 0.65);
  background: rgba(241, 247, 247, 0.05);
  border: 1px solid rgba(3, 98, 76, 0.3);
  border-radius: 0.25rem;
  padding: 2px 6px;
  white-space: nowrap;
  transition: all 150ms ease;
}
#projects-currently-building .pcb-tag i {
  color: #00DF82;
  font-size: 0.55rem;
}
#projects-currently-building .pcb-tag:hover {
  background: rgba(0, 223, 130, 0.08);
  border-color: rgba(0, 223, 130, 0.35);
  color: #F1F7F7;
}

@keyframes pcb-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 5px #00DF82;
  }
  50% {
    opacity: 0.3;
    box-shadow: none;
  }
}
#projects-quote {
  position: fixed;
  z-index: 10;
  background: linear-gradient(to right, transparent, rgba(94, 175, 116, 0.08));
  border-top: 1px solid rgba(94, 175, 116, 0.3);
  border-right: 1px solid rgba(94, 175, 116, 0.4);
  border-bottom: 1px solid rgba(94, 175, 116, 0.3);
  border-left: none;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}
#projects-quote .pquote-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
}
#projects-quote .pquote-icon {
  font-size: 1.25rem;
  color: rgba(94, 175, 116, 0.5);
  flex-shrink: 0;
}
#projects-quote .pquote-body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
#projects-quote .pquote-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5EAF74;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}
#projects-quote .pquote-label::after {
  content: " :";
}
#projects-quote .pquote-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #F1F7F7;
  line-height: 1.625;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

#projects-cta {
  position: fixed;
  z-index: 10;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(4, 34, 34, 0.85));
  border-radius: 0 1rem 1rem 0;
  border: 1.5px solid rgba(44, 194, 149, 0.5);
  border-left: none;
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  z-index: 10;
}
#projects-cta .pcta-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}
#projects-cta .pcta-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}
#projects-cta .pcta-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}
#projects-cta .pcta-heading i {
  color: #00DF82;
  font-size: 0.875rem;
  flex-shrink: 0;
}
#projects-cta .pcta-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(241, 247, 247, 0.55);
  line-height: 1.375;
}
#projects-cta .pcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: #021A1A;
  background: #00DF82;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
}
#projects-cta .pcta-btn i {
  font-size: 0.75rem;
}
#projects-cta .pcta-btn:hover {
  background: #2CC295;
  box-shadow: 0 0 18px rgba(0, 223, 130, 0.35);
}

#projects-intro-bio {
  position: fixed;
  z-index: 10;
  background: linear-gradient(180deg, #042222 0%, #021A1A 100%);
  border-radius: 1rem 1rem 0 0;
  padding: 0.625rem 0.875rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}
#projects-intro-bio p {
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.625;
}

#projects-right-panel {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#projects-img-1 {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
#projects-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 500ms ease;
}
#projects-img-1:hover img {
  transform: scale(1.04);
}

#projects-img-marquee {
  flex: 0 0 auto;
  height: 2rem;
  position: relative;
  overflow: hidden;
}
#projects-img-marquee::before, #projects-img-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #2CC295 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
#projects-img-marquee::before {
  top: 0;
}
#projects-img-marquee::after {
  bottom: 0;
}
#projects-img-marquee .marquee-track {
  height: 100%;
}

#projects-counter {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: baseline;
  justify-content: center;
  overflow: hidden;
}
#projects-counter .counter-current {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
#projects-counter .counter-sep {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(241, 247, 247, 0.5);
  margin-left: 0.25rem;
}

#projects-scroll-indicator {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  overflow: hidden;
}
#projects-scroll-indicator .pscroll-line {
  flex: 1;
  width: 2px;
  background: rgba(3, 98, 76, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}
#projects-scroll-indicator .pscroll-arrow {
  font-size: 0.65rem;
  color: #00DF82;
  opacity: 0.7;
  animation: pscroll-bob 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pscroll-bob {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}
#projects-category-breakdown {
  position: fixed;
  z-index: 10;
  background: linear-gradient(180deg, #042222 0%, #021A1A 100%);
  border: 1px solid rgba(3, 98, 76, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  overflow: hidden;
}
#projects-category-breakdown .pcat-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5EAF74;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#projects-category-breakdown .pcat-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#projects-category-breakdown .pcat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#projects-category-breakdown .pcat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
#projects-category-breakdown .pcat-dot--freelance {
  background: #00DF82;
}
#projects-category-breakdown .pcat-dot--client {
  background: #2CC295;
}
#projects-category-breakdown .pcat-dot--personal {
  background: #5EAF74;
}
#projects-category-breakdown .pcat-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #F1F7F7;
  flex: 1;
}
#projects-category-breakdown .pcat-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #00DF82;
}

#projects-industry-console {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: #0a0f0f;
  border: 1px solid rgba(44, 194, 149, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  font-family: "JetBrains Mono", monospace;
}
#projects-industry-console .ptag-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(44, 194, 149, 0.1);
  flex-shrink: 0;
}
#projects-industry-console .ptag-dots {
  display: flex;
  gap: 0.5rem;
}
#projects-industry-console .ptag-dots .dot--red {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #ff5f56;
}
#projects-industry-console .ptag-dots .dot--yellow {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #ffbd2e;
}
#projects-industry-console .ptag-dots .dot--green {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #27c93f;
}
#projects-industry-console .ptag-title {
  font-size: 0.7rem;
  color: rgba(241, 247, 247, 0.4);
  margin-left: 0.5rem;
}
#projects-industry-console .ptag-output {
  flex: 1;
  overflow: hidden;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#projects-industry-console .ptag-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
#projects-industry-console .ptag-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
#projects-industry-console .ptag-prompt {
  color: #00DF82;
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
}
#projects-industry-console .ptag-cmd {
  color: #F1F7F7;
  font-weight: 600;
}
#projects-industry-console .ptag-text {
  color: rgba(241, 247, 247, 0.8);
}
#projects-industry-console .ptag-line--result .ptag-prompt {
  color: rgba(94, 175, 116, 0.7);
}
#projects-industry-console .ptag-val {
  color: #00DF82;
  font-weight: 600;
}

#projects-scroll-zone {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

#carousel-slot-1,
#carousel-slot-2,
#carousel-slot-3 {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

#carousel-slot-1 {
  flex: 3 0 0;
  min-height: 0;
}

#carousel-slot-2,
#carousel-slot-3 {
  flex: 0.35 0 0;
  min-height: 0;
}

.pcard {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(3, 98, 76, 0.3);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 200ms ease;
}
.pcard.pcard--active {
  justify-content: flex-start;
  border-color: rgba(0, 223, 130, 0.45);
  box-shadow: 0 0 25px rgba(0, 223, 130, 0.12);
}
.pcard:hover {
  border-color: rgba(0, 223, 130, 0.35);
}
.pcard--name-only {
  justify-content: center;
  gap: 0;
}
.pcard--name-only .pcard-name {
  text-align: left;
}
.pcard--name-only .pcard-desc,
.pcard--name-only .pcard-footer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}
.pcard .pcard-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
}
.pcard .pcard-desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(241, 247, 247, 0.55);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.pcard .pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-top: auto;
}
.pcard .pcard-type {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(241, 247, 247, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.pcard .pcard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(3, 98, 76, 0.4);
  background: transparent;
  color: rgba(241, 247, 247, 0.4);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 150ms ease;
}
.pcard .pcard-cta:hover {
  border-color: #00DF82;
  color: #00DF82;
  box-shadow: 0 0 8px rgba(0, 223, 130, 0.2);
}

#projects-filters {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding: 0 0.75rem;
  overflow: hidden;
  z-index: 10;
  border-bottom: 1px solid #03624C;
}

.pfilter-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(241, 247, 247, 0.5);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #F1F7F7;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
  margin-bottom: -1px;
}
.pfilter-tab:hover {
  color: #F1F7F7;
}
.pfilter-tab--active {
  color: #00DF82;
  border-bottom-color: #00DF82;
}

.pfilter-tab .pfilter-count {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(241, 247, 247, 0.3);
  background: rgba(241, 247, 247, 0.06);
  border-radius: 9999px;
  padding: 1px 5px;
  line-height: 1.4;
  transition: all 150ms ease;
}

.pfilter-tab:hover .pfilter-count {
  color: rgba(241, 247, 247, 0.6);
}

.pfilter-tab--active .pfilter-count {
  color: #00DF82;
  background: rgba(0, 223, 130, 0.1);
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════════════════ */

/* SERVICES TITLE CELLS 14-16 28-27-26 COL 2-4 ROW 2-3 */
#services-page-title {
  position: absolute;
  overflow: hidden;
  z-index: 10;
}

#services-page-title svg {
  width: 100%;
  height: 100%;
  display: block;
}

#services-page-title text {
  fill: #FFFFFF;
  font-family: 'Warren', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* SERVICES INTRO CELLS 38-39-40 52 64-63-62 50 COL 2-4 ROW 4-6 */
#services-intro {
  position: absolute;
  padding: 1rem;
  background: #031B1B;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  z-index: 10;
}

#services-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--off-white);
  margin: 0;
}

/* SERVICE CARD SHARED STYLES */
.service-card {
  position: absolute;
  padding: 0.75rem;
  background: rgba(3, 27, 27, 0.4);
  border: 1px solid rgba(94, 175, 116, 0.1);
  border-radius: 16px;
  overflow: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  border-color: rgba(94, 175, 116, 0.25);
  background: rgba(3, 27, 27, 0.6);
}

.service-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 223, 130, 0.1);
  border-radius: 10px;
  color: #00DF82;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-card-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #F1F7F7;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.service-card-title i {
  color: #00DF82;
  font-size: 0.75rem;
}

#service-uiux {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}

#service-backend {
  border: none;
  background: linear-gradient(to bottom, #031B1B 0%, transparent 100%);
}

#service-frontend {
  border: 2px solid var(--caribbean-green);
  background: transparent;
}

.uiux-desc {
  font-size: 0.75rem;
}

.service-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--off-white);
  margin: 0;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  line-height: 1.5;
  color: var(--off-white);
  padding-left: 0.75rem;
  position: relative;
  text-transform: uppercase;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00DF82;
}

.service-card-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-card-tags li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: rgba(94, 175, 116, 0.8);
  background: rgba(94, 175, 116, 0.08);
  border: 1px solid rgba(94, 175, 116, 0.12);
  border-radius: 6px;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.service-card-tags li i {
  font-size: 0.55rem;
}

/* SERVICES MARQUEE CELLS 134-138 COL 2-6 ROW 12 */
#services-marquee {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  display: flex;
  align-items: center;
}
#services-marquee::before, #services-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #2CC295 100%);
}
#services-marquee::before {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 30%, #2CC295 100%);
}
#services-marquee::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, #2CC295 100%);
}

/* SERVICES CTA CELLS 142-143-144 COL 10-12 ROW 12 */
#services-cta {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(3, 27, 27, 0.4);
  border: 1px solid rgba(94, 175, 116, 0.15);
  border-radius: 12px;
  z-index: 10;
  gap: 0.5rem;
  overflow: hidden;
}

.cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--off-white);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: #03624C;
  border-radius: 8px;
  color: #F1F7F7;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.services-cta-btn:hover {
  background: #5EAF74;
  transform: translateY(-1px);
}

.services-cta-btn i {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.services-cta-btn:hover i {
  transform: translateX(3px);
}